-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlandingpagemomo.html
278 lines (240 loc) · 8.54 KB
/
landingpagemomo.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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MY SHOP</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,500&family=Ubuntu:wght@500&display=swap" rel="stylesheet">
<!-- Improved CSS -->
<style>
/* General Styling */
body {
font-family: 'Poppins', sans-serif;
font-family: 'Ubuntu', sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
/* Navigation Bar */
.navbar {
background-color: #343a40;
}
.navbar-brand, .nav-link {
color: white !important;
font-weight: 500;
}
.nav-link:hover {
color: #f8c23c !important;
transition: color 0.3s;
}
/* Header */
.header {
background-image: url('title.jfif');
background-repeat: no-repeat;
background-size: cover;
height: 250px;
display: flex;
justify-content: center;
align-items: center;
opacity: 0.9;
color: white;
text-align: center;
font-size: 2.5em;
font-weight: bold;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
/* Button Styling */
.button-container {
display: flex;
justify-content: center;
margin-top: 30px;
}
.button-container .btn {
padding: 15px 40px;
font-size: 1.2em;
border-radius: 30px;
background-color: #28a745;
color: white;
text-transform: uppercase;
transition: background-color 0.3s;
}
.button-container .btn:hover {
background-color: #218838;
box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}
/* Image Gallery */
.container {
margin-top: 40px;
margin-bottom: 40px;
}
.container img {
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s, box-shadow 0.3s;
}
.container img:hover {
transform: scale(1.05);
box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2);
}
/* Main Content */
.main {
background-color: white;
border-radius: 10px;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
padding: 30px;
margin-bottom: 40px;
}
.main h2 {
font-size: 2em;
margin-bottom: 20px;
color: #343a40;
}
.main p {
font-size: 1.1em;
line-height: 1.8;
color: #555;
}
.main .container img {
margin-bottom: 20px;
width: 75px;
height: auto;
}
/* Footer */
.footer {
background-color: #343a40;
color: white;
padding: 20px;
text-align: center;
font-size: 1em;
}
.footer p {
margin: 0;
}
/* Contact Button */
.btn-primary {
background-color: #007bff;
border: none;
padding: 12px 30px;
border-radius: 30px;
transition: background-color 0.3s;
}
.btn-primary:hover {
background-color: #0056b3;
}
/* Media Queries for Responsiveness */
@media (max-width: 768px) {
.header {
height: 180px;
font-size: 1.8em;
}
.button-container .btn {
padding: 12px 30px;
font-size: 1em;
}
.main h2 {
font-size: 1.5em;
}
.main p {
font-size: 1em;
}
.container img {
margin-bottom: 15px;
}
}
@media (max-width: 576px) {
.header {
font-size: 1.5em;
}
.button-container .btn {
font-size: 0.9em;
padding: 10px 25px;
}
.main {
padding: 20px;
}
}
</style>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">MY SHOP</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-center" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.zomato.com" target="_blank">Zomato</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.swiggy.com" target="_blank">Swiggy</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.instagram.com" target="_blank">Instagram</a>
</li>
</ul>
</div>
</nav>
<!-- Header -->
<header class="header">
<h1>Welcome to MY SHOP</h1>
</header>
<!-- Order Now Button -->
<div class="button-container">
<a href="https://wa.me/918104141618" class="btn btn-success btn-lg" target="_blank">Order Now</a>
</div>
<!-- Image Gallery -->
<div class="container">
<div class="row">
<div class="col-md-3">
<img src="shop2.jfif" class="img-fluid" alt="Shop Image">
</div>
<div class="col-md-3">
<img src="all2.png" class="img-fluid" alt="Menu Image">
</div>
<div class="col-md-3">
<img src="fries.jpeg" class="img-fluid" alt="Fries">
</div>
<div class="col-md-3">
<img src="burrr.jfif" class="img-fluid" alt="Burger">
</div>
</div>
</div>
<!-- Main Content -->
<div class="main container">
<div class="container">
<img src="about.png" width="75px" height="50px" alt="About Us Icon">
<h2>About Us</h2>
<p>Discover the Irresistible World of Momo Magic at Our Shop! Explore a delectable range of mouthwatering momos, from traditional classics to innovative gourmet creations. Welcome to the momo's house of Excellence!</p>
</div>
<div class="container">
<img src="ser.png" width="75px" height="50px" alt="Our Services Icon">
<h2>Our Services</h2>
<p>We offer a wide range of momo varieties: <strong>Creamy, Kurkure, Fried, Steamed</strong>. Let your taste buds discover the magic of momos!</p>
</div>
<div class="container">
<img src="contact.webp" width="75px" height="50px" alt="Contact Us Icon">
<h2>Contact Us</h2>
<p>If you have any questions or inquiries, please get in touch with us.</p>
<a href="mailto:[email protected]" class="btn btn-primary" target="_blank">Email Us</a>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<p>© 2023 THE MOMO'S HOUSE. All Rights Reserved.</p>
</footer>
<!-- Bootstrap JS and jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>