-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (62 loc) · 1.86 KB
/
index.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
55
56
57
58
59
60
61
62
63
64
65
<html>
<head>
<title>
Noodle Form
</title>
<link rel="stylesheet" href="NoodleForm.css">
</head>
<body>
<h1> Noodle Form </h1>
<form>
<label for="fname">
First Name
</label>
<input type="text" id="fname" name="fname">
<br> <br>
<label for="lname"></label>
Last Name
</label>
<input type="text" id="lname" name="lname">
<br> <br>
<label for="TON"></label>
Type of Noodle
</label> <br>
<input type="checkbox" id="Spicy" name="TON" value="Spicy">
<label for="Spicy">
Spicy
</label> <br>
<input type="checkbox" id="Udon" name="TON" value="Udon">
<label for="Udon">
Udon
</label> <br>
<input type="checkbox" id="Hand Pulled" name="TON" value="Hand Pulled">
<label for="Hand Pulled">
Hand Pulled
</label> <br>
<input type="checkbox" id="Cup Noodles" name="TON" value="Cup Noodles">
<label for="Cup Noodles">
Cup Noodles
</label> <br>
<input type="checkbox" id="Soba" name="TON" value="Soba">
<label for="Soba">
Soba
</label> <br>
<input type="checkbox" id="Chow Mein" name="TON" value="Chow Mein">
<label for="Chow Mein">
Chow Mein
</label> <br> <br>
<label for="TOB"></label>
Type of Broth
</label> <br>
<input type="radio" id="Hot" name="TOB" value="Hot">
<label for="Hot">
Hot
</label> <br>
<input type="radio" id="Cold" name="TOB" value="Cold">
<label for="Cold">
Cold
</label> <br>
<input type="submit">
</form>
</body>
</html>