-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
64 lines (47 loc) · 1.43 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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Basic Portfolio</title>
<link rel="stylesheet" type="text/css" href="/assets/css/style.css">
</head>
<body>
<header>
<div class="pageid">
<h1>Kathy Satterlee</h1>
</div>
<nav>
<ul>
<li> <a href="index.html">About</a></li>
<li> <a href="Portfolio.html">Portfolio</a></li>
<li> <a href="Contact.html">contact</a></li>
</ul>
</nav>
</header>
<div class="content">
<h2>Contact Me</h2>
<hr/>
<form action="mailto:kberis@gmail.com" method="post" enctype="text/plain">
Name:<br>
<input type="text" name="name"><br>
E-mail:<br>
<input type="text" name="mail"><br>
Message:<br>
<input type="text" name="comment" size="50"><br><br>
<input type="submit" value="Send">
</form>
</div>
<div class="connect">
<h3> Connect With Me </h3>
<hr>
<ul>
<li> <a href="https://github.com/ksatter/" target=_blank><img src="assets/images/git.png" height="50px" alt="Github"></a></li>
<li> <a href="https://www.linkedin.com/in/katheryn-satterlee/" target=_blank><img src="assets/images/li.png" height= 50px alt="LinkedIn"></a></li>
<li> <a href="https://stackoverflow.com/users/8413566/katheryn-satterlee?tab=profile" target=_blank><img src="assets/images/overflow.png" height= 50px alt="Stack Overflow"></a></li>
</ul>
</div>
<footer>
<h6> © Copyright 2017 Kathy Satterlee</h6>
</footer>
</body>
</html>