-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 1.36 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<title>Ice Cream Shoppe</title>
</head><body>
<div class="container">
<h1>Welcome to my Ice Cream Shoppe!</h1>
<form action="process.php" method="post">
<h3>How many scoops?</h3>
<input type="text" name="scoops" ><br>
<h3>Choose flavor(s)</h3>
<label><input type='checkbox' name='flavor[]' value='vanilla'> Vanilla</label><br><label><input type='checkbox' name='flavor[]' value='chocolate'> Chocolate</label><br><label><input type='checkbox' name='flavor[]' value='strawberry'> Strawberry</label><br><label><input type='checkbox' name='flavor[]' value='caramel'> Caramel</label><br>
<h3>Choose One</h3>
<label><input type='radio' name='cone' value='sugar'> Sugar Cone</label><br><label><input type='radio' name='cone' value='waffle'> Waffle Cone</label><br><label><input type='radio' name='cone' value='cup'> Cup</label><br>
<br>
<button type="submit">Place Order</button>
</form>
</div>
</body>
</html>