-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
63 lines (53 loc) · 1.77 KB
/
contact.html
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
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Contact | Marie Dagan</title>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header>
<div class="wrapper">
<a href="#" id="logo">Marie Dagan</a>
<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>
<div id="container" class="wrapper">
<div id="content" class="module">
<h1>Contact</h1>
<form id="contact-form">
<ul>
<li>
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="John Smith" required="required">
</li>
<li>
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="example@gmail.com" required="required">
</li>
<li>
<label for="message">Message</label>
<textarea id="message" name="message" required="required"></textarea>
</li>
</ul>
<input type="submit">
</form>
</div>
<div id="social" class="module">
<h2>Connect with Me</h2>
<a href="https://github.com/Bronzeowl"><img src="assets/images/github.png"></a>
<a href="https://www.linkedin.com/in/mariedagan/"><img src="assets/images/linkedin.png"></a>
<a href="http://stackoverflow.com/users/7586676/marie-d?tab=profile"><img src="assets/images/overflow.png"></a>
</div>
</div>
<footer> Copyright © 2017 Marie Dagan</footer>
</body>
</html>