-
Notifications
You must be signed in to change notification settings - Fork 0
/
Radio.html
39 lines (29 loc) · 1.28 KB
/
Radio.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
<html>
<body>
<header>
<h1>Best Pizza Ever!</h1>
<h3>Come and get some, homie.<h3>
</header>
<main>
<section id="contact-form">
<h2>Place Order</h2>
<from method="GET" action="place-order.php">
<h4>Delivery</h4> <!add Radio buttons>
<input name="deliveryMethod" type="radio" value="delivery" />Delivery <br />
<input name="deliveryMethod" type="radio" value="pickup" />Pickup <br> <br><br />
<input name="address1" placeholder="Address Line 1" class="lg-input" /><br />
<input name="address2" placeholder="Address Line 1" class="lg-input" /><br />
<input name="city" placeholder="City" class="sm-input" /><br>
<input name="state" placeholder="State" class="sm-input" /><br>
<input name="zip" placeholder="Zip Code" class="sm-input" /><br>
<br>
<h4>Ingredients</h4>
<input name="pepperoni" type="checkbox" /> Pepperoni <br>
<input name="salami" type="checkbox" /> Salami <br>
<input name="bacon" type="checkbox" /> Bacon <br>
<input name="sausage" type="checkbox" /> Italian Sausage <br>
<input name="peppers" type="checkbox" /> Green Peppers <br>
</form>
</main>
</body>
</html>