-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
56 lines (52 loc) · 1.92 KB
/
contact.html
File metadata and controls
56 lines (52 loc) · 1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="css/index.css" />
<title>Contact - Github User Breakdown</title>
</head>
<body>
<header class="header-navigation">
<div class="header">
<a href="index.html"><img src="images/logo.png" alt="Our logo" /></a>
<h2>Github User Breakdown</h2>
</div>
<div class="search-bar">
<button class="header-sign-up">
<a href="signup.html">Sign Up</a>
</button>
<button class="header-sign-in"><a href="login.html">Log In</a></button>
</div>
</header>
<div class="container">
<div class="contact-form">
<h2>Please use the form below to contact us:</h2>
<form>
<label>Name</label>
<input name="name" type="text" placeholder="Type name" required />
<label>Email</label>
<input name="email" type="email" placeholder="Type email" requried />
<label>Message</label>
<textarea
name="message"
placeholder="Type message"
required
></textarea>
<input id="submit" name="submit" type="submit" value="Submit" />
</form>
</div>
</div>
<footer class="footer-content">
<ul class="footer-content-list">
<li class="footer-content-item"><a href="index.html">Search</a></li>
<li class="footer-content-item"><a href="privacy.html">Privacy</a></li>
<li class="footer-content-item"><a href="terms.html">Terms</a></li>
<li class="footer-content-item"><a href="contact.html">Contact</a></li>
<li class="footer-content-item"><a href="about.html">About</a></li>
</ul>
<p class="copyright">Copyright 2019 ThomasSmith Dev</p>
</footer>
</body>
</html>