forked from axshon/HTML-5-Ellipse-Tours
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
37 lines (35 loc) · 927 Bytes
/
signup.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
<!DOCTYPE HTML>
<html>
<head>
<title>Ellipse Tours</title>
<!-- normalize.css for browser differences, http://necolas.github.com/normalize.css/ -->
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<!-- CSS for this site -->
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/signup.css">
</head>
<body>
<nav id="top-nav">
<a href="/">Home</a>
<a href="/signup.html">Sign Up</a>
<a href="/tour.html">Tour</a>
</nav>
<section>
<h1>Sign up for an Ellipse Tour</h1>
<form>
<div>
Your Name <input type="text" required>
</div>
<div>
Email <input type="email" required>
</div>
<div>
How Many People <input type="number" min="1" required>
</div>
<div>
<input type="submit" value="Sign Up">
</div>
</form>
</section>
</body>
</html>