This repository has been archived by the owner on May 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
83 lines (83 loc) · 3.02 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
82
83
<!DOCTYPE html>
<html>
<head>
<title>Michael Bolens</title>
<meta charset="utf-8" />
<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 class="top-bar">
<div class="top-bar--content">
<h1 class="top-bar--name">Michael Bolens</h1>
<nav class="top-bar--nav">
<ul class="clearfix">
<li class="top-bar--nav-item">
<a href="./index.html">About</a>
</li>
<li class="top-bar--nav-item">
<a href="./portfolio.html">Portfolio</a>
</li>
<li class="top-bar--nav-item">
<a href="./contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
</header>
<div class="content">
<div class="row clearfix">
<div class="col col--wide">
<section id="contact" class="block">
<h2 class="block--title">Contact</h2>
<hr class="block--bar" />
<div class="block--content">
<form class="contact-form">
<fieldset>
<legend></legend>
<p>
<label for="name">Name</label>
<input type="text" name="name" id="name" value="John Smith" />
</p>
<p>
<label for="email">Email</label>
<input type="text" name="email" id="email" value="[email protected]" />
</p>
<p>
<label for="message">Message</label>
<textarea name="message" cols="40" rows="5"></textarea>
</p>
<p>
<button class="btn" type="submit">Submit</button>
</p>
</fieldset>
</form>
</div>
</section>
</div>
<div class="col col--narrow">
<section id="connect" class="block">
<h3 class="block--title">Connect with Me</h3>
<hr class="block--bar" />
<div class="block--content block-content__small">
<ul class="connect--icons">
<li>
<a target="_blank" href="https://github.com/bolensmichael"><img src="./assets/images/if_github_square_black_107109.svg" /></a>
</li>
<li>
<a target="_blank" href="https://www.linkedin.com/in/michaelbolens/"><img src="./assets/images/if_linkedin_square_color_107091.svg" /></a>
</li>
<li>
<a target="_blank" href="https://stackoverflow.com/users/2482508/bolensmichael"><img src="./assets/images/if_overflow_334695.svg" /></a>
</li>
</ul>
</div>
</section>
</div>
</div>
</div>
<footer class="bottom-bar">
<span class="bottom-bar--text">© 2017 Michael Bolens</span>
</footer>
</body>
</html>