-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
47 lines (33 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<h1 class="title">Drew Huslig</h1>
<h2 class="menu" id="contact"><a href="contact.html">Contact</a></h2>
<h2 class="menu menustyle"><a href="portfolio.html">Portfolio</a></h2>
<h2 class="menu menustyle"><a href="index.html">About</a></h2>
<section class="aboutme">
<h1 class="underline">Contact</h1>
<label>Name</label><br>
<input type="text" name="name" placeholder="John Smith"><br><br>
<label>Email</label><br>
<input type="text" name="email" placeholder="[email protected]"><br><br>
<label>Message</label><br>
<input type="text" name="message" id="message"><br><br>
<button type="button" class="button">Submit</button>
</section>
<section class="connectwithme">
<h1 class="center underline">
Connect With Me
</h1>
<img class="icon" src="assets/images/github-icon.png">
<img class="icon" src="assets/images/linkedin-icon.png">
<img class="icon" src="assets/images/stackoverflow-icon.png">
</section>
<footer class="center">Copyright Drew Huslig</footer>
</body>
</html>