-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
94 lines (70 loc) · 3.54 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
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE>
<html>
<head>
<!--meta-->
<meta charset="UTF-8" />
<title>Benjamin Tommerdahl Portfolio</title>
<!--styles-->
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<div class="wrapper">
<header>
<div class="header">
<div class="box1"><h1>Benjamin Tommerdahl</h1></div>
<nav>
<div class="links">
<ul>
<div class="boxAbout"><li><a href="index.html"><h3>About</h3></a></li></div>
<div class="boxPortfolio"><li><a href="portfolio.html"><h3>Portfolio</h3></a></li></div>
<div class="boxContact"><li><a href="#"><h3>Contact</h3></a></li></div>
<div style="clear:both;"></div>
</ul>
</div>
</nav>
</div>
</header>
<div class="main">
<main>
<div class="container1">
<section aria-labelledby="Contact">
<h2 id="Contact"></h2>
<h2>Contact</h2>
<hr />
<form>
Name <br>
<input class="text" type="text" name="Name" value="" >
<br><br>
Email <br>
<input class="text" name="Email" value="" >
<br> <br>
Message <br>
<textarea class="message_text" name="comment" form="Message"> </textarea>
<br><br>
<input type="submit" value="Submit" >
</form>
</section>
</div>
<div class="container2">
<section aria-labelledby="Connect with Me">
<h4 id="Connect with Me"></h4>
<h4>Connect with Me</h4>
<a href="https://github.com/btommer2017"><img src="assets\images\CatLinkPic.jpg" alt="Ben Profile Pic" style="width:50px;height:50px;margin:0 0 0 50;"></a>
<a href="https://www.linkedin.com/in/benjamin-tommerdahl-116185151/"><img src="assets\images\LinkedInLinkPic.jpg" alt="Ben Profile Pic" style="width:50px;height:50px;margin:0 0 0 9;"></a>
<a href="https://stackoverflow.com/users/story/9248386"><img src="assets\images\OrangeLinkPic.jpg" alt="Ben Profile Pic" style="width:50px;height:50px;margin:0 0 0 9;"></a>
</section>
</div>
</main>
</div>
<div class="push"></div>
</div>
<footer class="footer">
<div class="topFooter">
<div class="topFooter"><h7></h7></div>
</div>
<div class="footer">
<div class="boxFooter"><h6> © Copyright 2018 Benjamin Tommerdahl</h6></div>
</div>
</footer>
</body>
</html>