-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
45 lines (42 loc) · 1.56 KB
/
contact.html
File metadata and controls
45 lines (42 loc) · 1.56 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
<!doctype html>
<html lang='en'>
<head>
<link rel='stylesheet' href='assets/css/style.css'>
<meta charset="UTF-8">
<title>Daniel Barkley | Contact</title>
</head>
<body>
<div class="wrapper">
<div class='header'>
<a class='active'></a>
<a id='name'>Daniel Barkley</a>
<div class='links'>
<a id='about' href='index.html'>About</a>
<a id='portfolio' href="portfolio.html">Portfolio</a>
<a id='contact' href="contact.html">Contact</a>
</div>
</div>
<div class='container-contact'>
<form class='contact-form'>
<h2>Contact</h2>
<hr>
<div class='form-group'>
<label>Name:</label>
<input type='text' name='name'>
</div>
<div class='form-group'>
<label>Email:</label>
<input type='text' name='email'>
</div>
<div class='form-group'>
<label>Message:</label>
<textarea name='message'></textarea>
</div>
<input class='button' type='submit' value='Submit' name='#'>
</form>
</div>
</div>
<div class="push"></div>
<div id='footer'>Copyright@</div>
</body>
</html>