-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
60 lines (55 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<title>
Contact
</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel='stylesheet' type='text/css' href='assets/css/style.css'>
</head>
<body>
<div class='container'>
<div class='navbar'>
<h2 id='top-name'>
Stephen So
</h2>
<ul class='top-links'>
<li>
<a href='contact.html'>Contact</a>
</li>
<li>
<a href='portfolio.html'>Portfolio</a>
</li>
<li>
<a href='index.html'>About</a>
</li>
</ul>
</div>
</div>
<div class='main'>
<div class='main-content'>
<h2>
Contact Me!
</h2>
<hr>
<form class='contact-form'>
Name<br>
<input type="text" name="name"><br>
Email<br>
<input type="text" name="email"><br>
Message<br>
<input type="text" name="message" id='message-box'><br>
</form>
<br>
<button type='button'>
Submit
</button>
</div>
</div>
<footer>
<div class='footer-content'>
2018
</div>
</footer>
</body>
</html>