-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
81 lines (73 loc) · 2.95 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Contact Dan</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/reset.css" />
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/mainStyles.css" />
<script src="https://code.jquery.com/jquery-3.2.1.js" integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE=" crossorigin="anonymous"></script>
<script src="assets/js/scripts.js"></script>
</head>
<body>
<!-- NEW NAV -->
<nav class='greedy'>
<h1>Dan Byler</h1>
<ul class='links'>
<li><a href='index.html'>About</a></li>
<li><a href='portfolio.html'>Portfolio</a></li>
<li><a href='contact.html'>Contact</a></li>
<li><a href='https://medium.com/@danbyler' target="_blank">Blog</a></li>
</ul>
<button>MENU</button>
<ul class='hidden-links hidden'></ul>
</nav>
<!-- BACKGROUND SECTION -->
<div id="mainBackground">
<!-- Set the Content section to 960px -->
<div id="contentArea" class="clearfix">
<!-- MAIN CONTENT SECTION -->
<div id="mainContent">
<h2>Contact</h2>
<hr/>
<form action="/my-handling-form-page" method="post">
<div>
<label for="name">Name</label>
<input type="text" id="name" name="user_name" placeholder="Adam Smith">
</div>
<div>
<label for="mail">Email</label>
<input type="email" id="mail" name="user_mail" placeholder="[email protected]">
</div>
<div>
<label for="msg">Message</label>
<textarea id="msg" name="uer_message"></textarea>
</div>
<div class="button">
<button type="submit">Submit</button>
</div>
</form>
</div>
<!-- SIDEBAR SECTION -->
<div id="sidebar">
<h3>Connect with me</h3>
<hr/>
<ul>
<li><a href="https://github.com/dByler1" target="_blank"><img src="assets/images/if_github_circle_black_107161.png" alt="github logo"></a></li>
<li><a href="https://www.linkedin.com/in/dannybyler/" target="_blank"><img src="assets/images/if_linkedin_834713.png" alt="LinkedIn logo"></a></li>
<li><a href="https://stackoverflow.com/users/9161540/dan-byler" target="_blank"><img src="assets/images/if_stackoverflow_313469.png" alt="StackOverflow logo"></a></li>
</ul>
</div>
<!-- end of the contentArea div -->
</div>
<!-- END OF BACKGROUND DIV -->
</div>
<!-- FOOTER SECTION -->
<div id="footer">
<p>
© copyright 2018 Dan Byler
</p>
</div>
</body>
</html>