-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
54 lines (45 loc) · 2.01 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DG's Form</title>
<link rel="stylesheet" href="../siess.css">
</head>
<body>
<a href="../index.html">Go to Introductory Page</a>
<br>
<br>
<br>
<h2>Thank you for Purchasing an H1 Sportsball.</h2>
<h4>We know you will love it.</h4>
<p>
<form>
<b>Your Name: <input type="text" name="text"></b><br>
<b>Your Secret H1 Sportsball Purchase-Protector-Password: <input type="password" name="pwd"></b>
<p></p>
<b>Payment Type:</b><br>
<input type="radio" name="radio" value="Radio #1">Credit Card<br>
<input type="radio" name="radio" value="Radio #2">Golden Doubloons<br>
<input type="radio" name="radio" value="Radio #3">The rights to your next New York Times bestselling novel<p></p>
<b>Terms of Agreement:</b><br>
<input type="checkbox" name="check" value="checkbox">I understand I may only purchase ONE H1 sportsball.<br>
<input type="checkbox" name="check" value="checkbox">I agree to the Terms & Conditions and Privacy Policy of H1 Sportsball Company.<p></p>
<b>Multiple Select Boxes:</b><br>
<select name="multselect">
<option value="soccer">The Bouncy Soccer Ball</option>
<option value="rugby">The Boomerang Rugby Ball</option>
<option value="handball">The Smashy Hand Ball</option>
<option value="bocce">The Rollie Bocce Ball</option>
<option value="cricket">The Fuzzy Cricket Ball</option>
<option value="field">The Flicky Field Hockey Ball</option>
<option value="golf">The Putty Golf Ball</option>
</select><p></p>
<b>Please confirm your date of birth:</b><br>
Date of Birth: <input type="date" name="dob"><br><p></p>
<b>Submit Form:</b><br>
<input type="submit" value="Submit"> <input type="reset">
</form>
</p>
</body>
</html>