-
Notifications
You must be signed in to change notification settings - Fork 3
/
restaurantPage.html
88 lines (82 loc) · 4.04 KB
/
restaurantPage.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Page</title>
<link rel="stylesheet" href="./Styles/index.css">
<link rel="stylesheet" href="./Styles/restaurantPage.css">
<link rel="stylesheet" href="./ComponentsStyles/footer.css">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
</head>
<body>
<div id="root" style="height: 100%;">
<div id="fullContainer">
<header>
<div id="headerContainer">
<div id="headerContentContainer">
<a href="./index.html" id="logo"><img src="https://cdn.worldvectorlogo.com/logos/swiggy-1.svg" alt="swiggylogo"></a>
<div id="currentLocation">Bangalore, Karnataka, India</div>
<ul id="headerContainerRight">
<li id="search">
<a href="./search.html"><img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Search_Icon.svg/2048px-Search_Icon.svg.png">Search</a>
</li>
<li id="offer">
<a href="./offers.html"><img src="https://static.thenounproject.com/png/971055-200.png" alt=""> Offers<pre><sup>New</sup></pre></a>
</li>
<li id="help">
<a href="./help.html"><img src="https://cdn.pixabay.com/photo/2016/07/23/13/18/pokemon-1536847_960_720.png" alt=""> Help</a>
</li>
<li id="signIn">
<a href="./landingPage.html" id="signInA"><img src="https://www.transparentpng.com/thumb/user/single-user-icon-png-free--rLHSHx.png" alt="">Guest</a>
</li>
<li id="cart"><a href="./checkout.html">Cart <span id="noOfCartItems"></span></a></li>
</ul>
</div>
</div>
<div id="alertBoxUpperDiv2" class="alertBoxUpperDiv"></div>
</header>
<div id="upperDivForDetails">
<div id="restaurantImageDiv">
<img src="" alt="">
</div>
<div id="restaurantDetailsDiv">
<h2 id="restaurantDetailsDivName"></h2>
<p class="restaurantDetailsDivChangeCSS" id="restaurantDetailsDivCuisine"></p>
<p class="restaurantDetailsDivChangeCSS" id="restaurantDetailsDivAddress"></p>
<div id="extraDetailsForRestaurant">
<div id="restaurantRating">
<h4></h4>
<p class="extraDetailsChangeCSS">500+ Ratings</p>
</div>
<div id="restaurantDeliveryTime">
<h4></h4>
<p class="extraDetailsChangeCSS">Delivery Time</p>
</div>
<div id="restaurantCost">
<h4></h4>
<p class="extraDetailsChangeCSS">Cost for Two</p>
</div>
</div>
</div>
</div>
<div id="foodItemsBox">
<div id="categoryBox">
<ul id="categoryList">
</ul>
</div>
<div id="categoryItemBox">
<div>
<h3 id="categoryHeading"></h3>
<p id="totalItemsCountInCategory"></p>
</div>
<div id="totalItemsInCategory"></div>
</div>
</div>
<footer id="footerPart"></footer>
</div>
</div>
</body>
</html>
<script src="./Scripts/restaurantPage.js" type="module"></script>