-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
29 lines (27 loc) · 1.13 KB
/
form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Insomniac Time Traveling Bloggers</title>
<link href='https://fonts.googleapis.com/css?family=Anton' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
<link href="style.css" rel="stylesheet">
</head>
<body>
<div id="container">
<div id="header">INSOMNIACS TIME TRAVELERS</div>
<div id="nav"><a href="index.html">HOME</a> <a href="about.html">ABOUT</a> <a href="blog.html">BLOG</a> <a href="form.html">FORM</a> <a href="boxes.html">BOXES</a></div>
<h1>Tell Us About You</h1>
<form action="//formspree.io/[email protected]" method="post">
<label for="user">
Full Name <input type="text" name="fullname" placeholder="Full Name"><br>
Username <input type="text" name="username" placeholder="User Name"><br>
Password <input type="text" name="password"><br><br>
</label>
<input type="submit"><br><br>
<div id="footer">see ya later (or earlier)</div>
</div>
</form>
</body>
</html>