-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpizza.html
More file actions
37 lines (35 loc) · 1.24 KB
/
pizza.html
File metadata and controls
37 lines (35 loc) · 1.24 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Pizza</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="pizza.js"></script>
<link rel="stylesheet" type="text/css" href="pizza.css">
</head>
<body>
<div class="top-header">
Pizza API
</div>
<div id="pizza-list"><div id="pizza-title">Pizzas</div>
<div id="new-pizza-form">
<div class="pizza-title">New Pizza</div>
<form id="pizza-form" name="pizza_form">
Name: <input type="text" id="pizza-name" name="pizza_name" /><br/>
Description: <input type="text" id="pizza-description" name="pizza_description" /><br/>
<input type="button" id="pizza-form-save" value="Save New Pizza" />
</form>
</div>
</div>
<div id="topping-list"><div id="topping-title">Toppings</div>
<div id="new-topping-form">
<div class="topping-title">New Topping</div>
<form id="topping-form" name="topping_form">
Name: <input type="text" id="topping-name" name="pizza_name" /><br/>
<input type="button" id="topping-form-save" value="Save New Topping" />
</form>
</div>
</div>
</body>
</html>