-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
50 lines (41 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Nomi Vos - Portfolio, Blog</title>
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<link rel="stylesheet" href="./font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="css/application.css">
</head>
<body>
<header id="main_navigation" class="clearfix">
<a href="#" class="name">Nomi Vos</a>
<nav>
<a href="articles.html">Articles</a>
<a href="#">Projects</a>
<a href="#">Contact</a>
</nav>
</header>
<h1 id="page_title">Say Hello!</h1>
<div class="skinny_wrapper wrapper_padding">
<label>Name</label><br>
<input type="text">
<br>
<label>Email</label><br>
<input type="text">
<br>
<label>Message</label><br>
<textarea></textarea>
<br>
<input type="submit" value="Send Message" class="button">
</div>
<footer id="main_footer">
<p class="copyright">©2016 Nomi Vos</p>
<nav>
<!-- <a href="#"><i class="fa fa-twitter" aria-hidden="true"></i></a> -->
<a href="https://github.com/nomi811"><i class="fa fa-github" aria-hidden="true"></i></a>
<a href="#"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
</nav>
</footer>
</body>
</html>