-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
59 lines (52 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact</title>
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/about.css">
<link rel="stylesheet" type="text/css" href="assets/css/contact.css">
<meta charset="utf-8">
</head>
<body>
<div id="wrapper">
<div class="header">
<h1>Sam Smith</h1>
<nav>
<a class="navlinks" href="about.html" target="_self">About</a>
<a class="navlinks" href="portfolio.html" target="_self">Portfolio</a>
<a class="navlinks" href="contact.html" target="_self">Contact</a>
</nav>
</div>
<br>
<br>
<div class="content">
<aside>
<div class="aside">
<h2 class="sideHeader">Connect with Me</h2>
<hr class = "sideHR">
<ul>
<li><a href="https://www.linkedin.com/in/sam-smith-844755125"><img class="icon" src="assets/images/Linkedin.png" alt="Linkedin"></a></li>
<li><a href="https://github.com/sbs863"><img class="icon" src="assets/images/Git.png" alt="GitHub"></a></li>
<li><a href="https://stackoverflow.com/users/6605956/sam-smith"><img class="icon" src="assets/images/Stack.png" alt="Stack Overflow"></a></li>
</ul>
</div>
</aside>
<section>
<h2 class="secHeader"> Contact </h2>
<hr>
Name
<input type="text" name="Name" title="John Smith" value="John Smith">
Email
<input type="text" name="Email" title="[email protected]" value="[email protected]">
Message
<textarea class="message"> </textarea>
<button class="submit" type="button">Submit</button>
</section>
</div>
<br>
<footer class="foot-box">
<div class="copyright">© Copyright 2016 Sam Smith</div>
</footer>
</div>
</body>
</html>