-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
69 lines (61 loc) · 1.68 KB
/
contact.html
File metadata and controls
69 lines (61 loc) · 1.68 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
<!DOCTYPE html>
<!-- body, html, head, image -->
<html lang="en-us">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="assets/reset.css">
<link rel="stylesheet" href="assets/style.css">
<link rel="stylesheet" href="assets/misc.css">
<title>Student Bio</title>
</head>
<body>
<!-- headline -->
<header>
<div class="content">
<a href="index.html">
<h1>Danielle Maddox</h1>
</a>
<!-- navigation -->
<ul class="nav">
<li><a href="index.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html" class="selected">Contact</a></li>
</ul>
</div>
</header>
<!-- Content -->
<div class="container">
<div class="content">
<div class="main">
<h2>Contact</h2>
<!-- Contact Form -->
<form>
Name<br>
<input type="text" name="Name" value="John Smith"><br>
Email<br>
<input type="email" name="Email" value="example@gmail.com"><br>
Message<br>
<textarea name="Message" rows="10" cols"30"></textarea><br>
<input type="submit" value="Submit" id="submit">
</form>
</div>
<div class="connect">
<!-- Connect -->
<h2>Connect with Me</h2>
<a href="https://github.com/dmaddox" target="_blank">
<img class="social left" src="assets/gh.png" alt=""/>
</a>
<a href="https://www.linkedin.com/in/dmaddx/" target="_blank">
<img class="social center" src="assets/li.png" alt=""/>
</a>
<a href="https://stackexchange.com/users/12042471/dmaddox" target="_blank">
<img class="social right" src="assets/so.png" alt=""/>
</a>
</div>
</div>
</div>
<footer>
© Copyright 2017 Danielle Maddox
</footer>
</body>
</html>