-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
61 lines (54 loc) · 1.71 KB
/
contact.html
File metadata and controls
61 lines (54 loc) · 1.71 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
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>About Me</title>
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header id="masthead">
<div class="container">
<a href="index.html" id="Logo">YOUR NAME</a>
<nav>
<a href="index.html">About</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<div id="main-container" class="container">
<section class="main-section">
<h1>Contact</h1>
<form id="contact form">
<ul>
<li>
<label for="name">Name</label>
<input type="text" name="name" id="name" placeholder="YOUR NAME" required="required">
</li>
<li>
<label for="Email">Email</label>
<input type="text" name="Email" id="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" name="submit">
</form>
</section>
<section class="sidebar">
<div id="connect">
<h2>Connect With Me</h2>
<img src="https://cdn1.iconfinder.com/data/icons/social-media-flags-free-4/64/github_social_media-128.png" class="social" alt="Gitbub">
<img src="https://cdn2.iconfinder.com/data/icons/micon-social-pack/512/linkedin-128.png" class="social" alt="Linkedin">
<img src="https://cdn2.iconfinder.com/data/icons/social-icons-circular-color/512/stackoverflow-128.png" class="social" alt="stackoverflow">
</section>
</div>
<footer>
<div class="container">
© Copyright 2017 DURAN HILL
</div>
</footer>
</body>
</html>