-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
41 lines (40 loc) · 1.38 KB
/
contact.html
File metadata and controls
41 lines (40 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Claire Labry | Contact</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<header>
<div class="container">
<p>Claire Labry</p>
<nav>
<ul>
<li><a href="index.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section>
<div class="container">
<h2 class="page-title">Contact</h2>
<form>
<label for="name">Name</label>
<input type="text" placeholder="Your Name">
<label for="email">Email</label>
<input type="email" placeholder="Your Email">
<label for="message">Message</label>
<input type="text" placeholder="Your Message">
<button type="submit" class="button_1">Submit</button>
</form>
</div>
</section>
<footer>
<p>Copyright © 2020 </p>
</footer>
</body>
</html>