-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (58 loc) · 2.13 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
66
67
68
69
<html><head>
<title>Pizzeria</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<script src="main.js"></script>
</head>
<body>
<div class="topnav">
<a class="active" href="#">Pizzeria</a>
<div class="topnav-right">
<a href="#viewblock">View Menu</a>
<a href="#addTopings">Add Menu</a>
</div>
</div>
<div class="row" id="viewblock">
<div class="img_div">
<img class="img-responsive" src="pizza.png">
</div>
<div class="menu_div">
<button id="menu_list" onclick="getmenu()">Show Menu</button>
<div id="display_menu">
</div>
</div>
</div>
<div class="newRow" id="addTopings">
<div class="block1">
<input id="add_item" placeholder="Type here to add toppings : *">
<br>
<div id="eategg"></div>
<br><br>
<div class="btn btn4">
<div class="inner"></div>
<button onclick="add_top()" >Submit</button>
</div>
</div>
<br>
<br>
<br><br><br><br><br><br><br><br><br><br>
<div class="btn btn2">
<div class="inner"></div>
<button onclick="add_item()" id="pot">Show Pizza</button>
</div>
</div>
<div class="block2">
<div id="display_addedmenu">
</div>
</div>
</div>
<div>
<img class="img-responsive" src="topping.png">
</div>
</body>
</html>
<div class="note"><h2>*Please enter the first letter of your topping capital letter.</h2></div>