-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
44 lines (34 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<title>Basic Portfolio</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<div>
<nav id="My Name" class="name"> Sarah A. Stevens </nav>
<nav id="About" class="otherpageshyperlinks"> About </nav>
<nav id="Portfolio" class="otherpageshyperlinks"> Portfolio </nav>
<nav id="Contact" class="otherpageshyperlinks"> Contact </nav>
</div>
<div id ="graydiv">Contact
Name:<br>
<input type="text" name="Name"style="width:400px;height:15px;">
<br>
Email:<br>
<input type="text" name="Email"style="width:400px;height:15px;">
<br><br>
Message:<br>
<input type="text" name="Message"style="width:400px;height:200px;">
<br>
<input type="submit" value="Submit">
</div>
<aside>Connect with Me
<br><br><br>
<img src="assets/images/github-octocat.png" id="github"style="width:75px;height:75px;">
<img src="assets/images/fb.png" id="fb"style="width:75px;height:75px;">
<img src="assets/images/stack.png" id="stackof"style="width:75px;height:75px;">
</aside>
<footer>Copyright 2016 Sarah A. Stevens</footer>
</body>
</html>