-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
105 lines (80 loc) · 2.51 KB
/
contact.html
File metadata and controls
105 lines (80 loc) · 2.51 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en-us">
<html>
<head>
<title>Kyle Becker Portfolio</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>
<!--Positioning footer to bottom-->
<div class="content">
<!--Name Box-->
<header class="clearfix">
<div id="headerBox">
<div id="nameTextBox">
<h1 id="nameText">Kyle Becker</h1>
</div>
<!--Navigation Menu-->
<nav class="nav">
<!--About-->
<div class="navigation"><p><a href="index.html">About</a></p></div>
<!-- Seperation Bar -->
<div class="seperation"></div>
<!-- Portfolio -->
<div class="navigation"><p><a href="portfolio.html">Portfolio</a></p></div>
<!-- Seperation Bar -->
<div class="seperation"></div>
<!-- Contact -->
<div class="navigation"><p><a href="contact.html">Contact</a></p></div>
</nav>
</div>
</header>
<!-- About Me information -->
<div class="clearfix" id="PageContents">
<section>
<h2>Contact</h2>
<div id="grey_line"></div>
<p>I always appreciate hearing questions and comments others may have; feel free to complete the form below to send your question or comment.</p>
<div class="webform">
<form>
<!-- Input name of contact -->
Name:<br>
<input type="text" name="username"><br><br>
<!-- Email address of respondent -->
Email:<br>
<input type="text" name="email"><br><br>
<!-- Comment of user -->
Comments:<br>
<input type="text" name="comments"><br><br>
<!-- Submit finalized form -->
<input type="submit" name="Message"><br><br>
</form>
</section>
<!-- Social Media Bar -->
<aside>
<h3>Connect with Me</h3>
<div id="small_grey_line"></div>
<div id="social_media">
<!-- GitHub -->
<a class="spacing" href="https://github.com/kmbecker" target="_blank">
<img id="social" src="assets/images/github.png" alt="GitHub"></a>
<!-- LinkedIn -->
<a class="spacing" href="https://www.linkedin.com/in/kyle-becker-aboc-104b3140/" target="_blank">
<img id="social" src="assets/images/linkedin.png" alt="LinkedIn"></a>
<!-- StackOverflow -->
<a class="spacing" href="https://stackoverflow.com/users/8210256/kyle-becker" target="_blank">
<img id="social" src="assets/images/stackoverflow.png" alt="StackOverflow"></a>
</div>
</aside>
</div>
<!-- Keep Foother at Bottom -->
<div class="bottomFooter"></div>
</div>
<!--Footer-->
<footer>
<div id="footerText">© Copyright 2017 Kyle Becker</div>
</footer>
</body>
</html>