-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
142 lines (106 loc) · 4.29 KB
/
Copy pathmenu.html
File metadata and controls
142 lines (106 loc) · 4.29 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!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>leisure_square.in</title>
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
<link rel="shortcut icon" type="image" href="./images/logo.png">
<!-- font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/lightgallery-js/1.4.0/css/lightgallery.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- header -->
<header class="header">
<img src="./images/logo.png" alt="" width="80px">
<a href="index.html" class="logo"><i> Laisure Square </i></a>
<nav class="navbar">
<a href="index.html">home</a>
<a href="about.html">about</a>
<a href="menu.html">Menu</a>
<a href="gallery.html">gallery</a>
<a href="review.html">review</a>
<a href="#order">order</a>
</nav>
<div class="icons">
<div id="cart-btn" class="fas fa-shopping-cart"></div>
<div id="menu-btn" class="fas fa-bars"></div>
</div>
</header>
<!-- header end -->
<!-- shopping cart -->
<div class="cart-items-container">
<div id="close-form" class="fas fa-times"></div>
<h3 class="title">checkout</h3>
<div class="cart-item">
<span class="fas fa-times"></span>
<img src="images/product-2.jpg" alt="">
<div class="content">
<h3>pinapple slush</h3>
<div class="price">₹149.00/-</div>
</div>
</div>
<div class="cart-item">
<span class="fas fa-times"></span>
<img src="images/product-4.jpg" alt="">
<div class="content">
<h3>pesto pasta</h3>
<div class="price">₹109.00/-</div>
</div>
</div>
<div class="cart-item">
<span class="fas fa-times"></span>
<img src="images/product-6.jpg" alt="">
<div class="content">
<h3>brownie with ice-cream</h3>
<div class="price">₹210.00/-</div>
</div>
</div>
<a class="btn"> checkout </a>
</div>
<!-- shopping cart end-->
<!-- menu -->
<div class="menu">
<img src="./images/menu1.jpg" alt="" width="100%">
<img src="./images/menu2.jpg" alt="" width="100%">
</div>
<!-- menu end-->
<!-- footer -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>address</h3>
<p>178/6 14th main road, 20th, 50th Main Rd,
Kumaraswamy Layout, Bengaluru,
Karnataka 560078</p>
<div class="share">
<a href="https://www.instagram.com/leisure_square/" class="fab fa-instagram"></a>
</div>
</div>
<div class="box">
<h3>E-mail</h3>
<a href="#" class="link" >leisuresquare8384@gmail.com</a>
</div>
<div class="box">
<h3>call us</h3>
<a><p>+91 63663 04818</p></a>
</div>
<div class="box">
<h3> opening hours</h3>
<p>Monday - Friday: 9:00 - 23:00 <br> Saturday: 8:00 - 24:00 </p>
</div>
</div>
<div class="credit">created by <a href="https://www.instagram.com/su_darsh_an_acharya/?igshid=YmMyMTA2M2Y%3D">Sudarshan</a> all rights reserved! </div>
</section>
<!-- footer ends -->
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lightgallery-js/1.4.0/js/lightgallery.min.js"></script>
<script src="js/script.js"></script>
<script>
lightGallery(document.querySelector('.gallery .gallery-container'));
</script>
</body>
</html>