-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
64 lines (48 loc) · 1.57 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>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Student Bio</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style2.css">
</head>
<body class="body">
<header class="header">
<div class="header-center">
<span class="header-name">Nathan Novak</span>
<span class="header-links">
<a href="index.html">About</a> |
<a href="portfolio.html">Portfolio</a> |
<a href="contact.html">Contact</a>
</span>
</div>
</header>
<div class="content">
<span class="content-title">Contact</span>
<hr>
<br>
<div class="inner-content">
<form action="mailto:[email protected]" method="post" enctype="text/plain">
Name:
<br>
<input type="text" name="name">
<br> E-mail:
<br>
<input type="email" name="mail">
<br> Comment:
<br>
<textarea type="text" name="comment" class="comment"></textarea>
<br>
<br>
<input type="submit" value="Submit">
<br>
</form>
</div>
</div>
<div class="footer">
<span>Copyright</span> ©
</div>
</body>
</html>