-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
36 lines (34 loc) · 842 Bytes
/
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Contact Info </title>
</title>
</head>
<body>
<header>
<div class="name">
TJ Lyttles
</div>
<div class ="links">
<a href="">About</a>
<a href="">Portfolio</a>
<a>Contact</a>
</div>
</header>
<div>
<h1>Contact</h1>
</div>
<form>
Name<br>
<input type="text" name="name"><br>
Email<br>
<input type="text" name="email"><br>
Meassage<br>
<input type="text" name="message"><br><br>
<input type="submit" value="Submit">
</form>
<footer>
</footer>
</body>
</html>