-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/bootstrap.css" type="text/css">
<link rel="stylesheet" href="css/styles.css" type="text/css">
<script src="js/jquery.js"></script>
<script src="js/scripts.js"></script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pizza Parlor</title>
</head>
<body>
<div class="container">
<div class="well">
<h1>Pizza Parlor</h1>
</div>
<form id="formOne">
<div class="row">
<div class="col-md-6">
<h2>Choose your Size</h2>
<select id="pizza" class="form-control">
<option value="1">Large</option>
<option value="2">Medium</option>
<option value="3">Small</option>
</select>
</div>
<div class="col-md-6">
<h2 class="add">Choose your Toppings</h2>
<div class="form-group">
<input type="checkbox" name="pizza-parlor" value="1"> Cheese<br>
<input type="checkbox" name="pizza-parlor" value="2"> Pepperoni<br>
<input type="checkbox" name="pizza-parlor" value="3"> Artichoke<br>
<input type="checkbox" name="pizza-parlor" value="4"> Anchovy<br>
</div>
</div>
</div>
<button type="Submit" class="btn btn-success">submit</button>
</form>
<div id="output">
<p>The Price $ <span id="price"></span></p>
</div>
</div>
</body>
</html>