-
Notifications
You must be signed in to change notification settings - Fork 0
/
nonveg.html
106 lines (104 loc) · 4.59 KB
/
nonveg.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!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>Non Veg</title>
<link rel="stylesheet" href="style.css" />
<script src="store.js" async></script>
<style>
body {
background-color: rgb(255, 255, 255);;
margin:0;
}
</style>
</head>
<body>
<nav class="navbar">
<ul class="nav-links">
<li class="nav-items"><a href="index .html">Home</a></li>
<li class="nav-items"><a href="#">Store</a></li>
<li class="nav-items"><a href="#">About</a></li>
<li class="nav-items"><a href="#">Help</a></li>
</ul>
<div class="right-container">
<input class="search-btn-main" type="text" placeholder="Search..">
<img class="cart-logo" src="Images/cart-logo.jpg">
</div>
</nav>
<div class="cont">
<img class="imgg" src="Images/bgimg2.jpg" alt="Loading image">
<div class="caption">
<p>Savor the flavor, one bite at a time</p>
</div>
</div>
<section class="container content-section">
<div class="shop-items">
<div class="shop-item">
<span class="shop-item-title">Egg Curry</span>
<img class="shop-item-image" src="Images/egg-curry.jpg">
<div class="shop-item-details">
<span class="shop-item-price">Rs.49</span>
<button class="btn btn-primary shop-item-button" type="button">ADD TO TABLE</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title"> Burger</span>
<img class="shop-item-image" src="Images/non-veg.webp">
<div class="shop-item-details">
<span class="shop-item-price">Rs.149</span>
<button class="btn btn-primary shop-item-button" type="button">ADD TO TABLE</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">chicken Lollipop</span>
<img class="shop-item-image" src="Images/chicken lollipop.jpg">
<div class="shop-item-details">
<span class="shop-item-price">Rs.179</span>
<button class="btn btn-primary shop-item-button" type="button">ADD TO TABLE</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Chicken Biryani</span>
<img class="shop-item-image" src="Images/Chicken-Fried-Rice.webp">
<div class="shop-item-details">
<span class="shop-item-price">Rs.149</span>
<button class="btn btn-primary shop-item-button" type="button">ADD TO TABLE</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Prawns</span>
<img class="shop-item-image" src="Images/prawns.jpg">
<div class="shop-item-details">
<span class="shop-item-price">Rs.199</span>
<button class="btn btn-primary shop-item-button" type="button">ADD TO TABLE</button>
</div>
</div>
<div class="shop-item">
<span class="shop-item-title">Mutton Curry</span>
<img class="shop-item-image" src="Images/mutton-curry.jpeg">
<div class="shop-item-details">
<span class="shop-item-price">Rs.179</span>
<button class="btn btn-primary shop-item-button" type="button">ADD TO TABLE</button>
</div>
</div>
</div>
</section>
<section class="container content-section">
<h2 class="section-header">CART</h2>
<div class="cart-row">
<span class="cart-item cart-header cart-column">ITEM</span>
<span class="cart-price cart-header cart-column">PRICE</span>
<span class="cart-quantity cart-header cart-column">QUANTITY</span>
</div>
<div class="cart-items">
</div>
<div class="cart-total">
<strong class="cart-total-title">Total</strong>
<span class="cart-total-price">Rs.0</span>
</div>
<button class="btn btn-primary btn-purchase" type="button">PURCHASE</button>
</section>
</body>
</html>