-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
435 lines (409 loc) · 15.6 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
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
<!--
Project :- Bumble-Clone-Project
Made By :- Kaustav Purkayastha
-->
<!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>Mumble - Date, Meet, Network Better</title>
<!-- Google Fonts -->
<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=Lato&family=Montserrat:wght@300&display=swap"
rel="stylesheet"
/>
<!-- Favicon -->
<link href="images/favicon.jpg" rel="icon" />
<!-- Font Awesome -->
<script
src="https://kit.fontawesome.com/263f1a19ce.js"
crossorigin="anonymous"
></script>
<!-- CSS Stylesheets -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/styles.css" />
<!-- Bootstrap Scripts -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
</head>
<body>
<!-- Header Section-->
<header id="header">
<div class="container-fluid">
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href=""
><i class="fa-brands fa-gratipay"></i> mumble</a
>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item"><a class="nav-link" href="">The Shop</a></li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
href="#"
id="navbarDropdown"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
The App
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item one" href="#">DATE</a></li>
<li><a class="dropdown-item two" href="#">BFF</a></li>
<li><a class="dropdown-item three" href="#">BIZZ</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="">Ambassadors</a>
</li>
<li class="nav-item"><a class="nav-link" href="">Events</a></li>
<li class="nav-item"><a class="nav-link" href="">The Buzz</a></li>
<li class="nav-item"><a class="nav-link" href="">About</a></li>
</ul>
</div>
</nav>
</div>
</header>
<!-- Body Section -->
<section id="body">
<div class="fluid-container">
<!-- Hero Block -->
<div id="hero-block" class="fluid-container">
<div class="cover-photo card">
<img
class="hero-image img-fluid"
src="images/hero-image.jpg"
alt="hero image"
/>
</div>
<div class="hero-block-content text-over-image g-0">
<div class="hero-body card-body">
<h1 class="hero-block-title">Make the first move</h1>
<p class="hero-block-text">
Start meeting new people in your area!<br />
Use Mumble on the web.
</p>
<div class="button-section">
<button type="button" class="btn btn-warning">Join</button>
<button type="button" class="btn btn-dark">Sign In</button>
</div>
</div>
</div>
</div>
<!-- Features -->
<div id="features" class="fluid-container">
<h1 class="features-title">
Connect with people you know but haven’t met yet
</h1>
<div class="features-box row row-cols-1 row-cols-md-3 g-4">
<div class="col">
<div class="card">
<img
src="images/dating-pic.jpg"
class="card-img-top"
alt="dating pic"
/>
<div class="card-body">
<h3 class="card-title">Mumble Date</h3>
<p class="card-text">
On Mumble, women make the first move. We’re leveling the
playing field and changing the dynamics of dating. We
believe relationships should begin with respect and
equality.
</p>
<div class="button-section">
<a href="#" class="btn btn-warning"> Learn More </a>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card">
<img
src="images/mentor-pic.jpg"
class="card-img-top"
alt="mentor pic"
/>
<div class="card-body">
<h3 class="card-title">Mumble Bizz</h3>
<p class="card-text">
Career opportunities come about when you expand your
network. On Mumble Bizz, you can pursue a career change,
meet team members, or become a mentor.
</p>
<div class="button-section">
<a href="#" class="btn btn-warning"> Learn More </a>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card">
<img
src="images/friend-pic.jpg"
class="card-img-top"
alt="friend pic"
/>
<div class="card-body">
<h3 class="card-title">Mumble BFF</h3>
<p class="card-text">
Whether you’re new to a city or looking to expand your
social circle, Mumble BFF is a simplified way to create
meaningful friendships.
</p>
<div class="button-section">
<a href="#" class="btn btn-warning"> Learn More </a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Promo Block -->
<div id="promo-block" class="fluid-container">
<div class="card">
<div class="row text-over-image g-0">
<div class="promo-media col-lg-6">
<img
class="img-fluid"
src="images/promo-photo.jpg"
alt="promo photo"
/>
</div>
<div class="promo-content col-lg-6">
<div class="promo-body card-body">
<h3 class="card-title">Why Mumble?</h3>
<p class="card-text">
Mumble was first founded to challenge the antiquated rules
of dating. Now, Mumble empowers users to connect with
confidence whether dating, networking, or meeting friends
online. We’ve made it not only necessary but acceptable for
women to make the first move, shaking up outdated gender
norms. We prioritize kindness and respect, providing a safe
online community for users to build new relationships.
</p>
<div class="button-section">
<a href="#" class="btn btn-warning"> Learn More </a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Carousel -->
<div
id="carousel-block"
class="carousel slide"
data-bs-interval="false"
>
<div class="carousel-inner">
<div class="carousel-item active fluid-container">
<div class="cover-photo card">
<img
class="carousel-image d-block w-100"
src="images/first-move.jpg"
alt="first move"
/>
</div>
<div class="carousel-item-content text-over-image g-0">
<div class="card-body">
<div class="first-body">
<h2 class="card-title">Make the First Move</h2>
<p class="card-text">
Women talk first to set an equal tone from the start.
</p>
<a href="#" class="btn btn-warning">HERE'S HOW</a>
</div>
</div>
</div>
</div>
<div class="carousel-item fluid-container">
<div class="cover-photo card">
<img
class="carousel-image d-block w-100"
src="images/verified-badge.jpg"
alt="verified badge"
/>
</div>
<div class="carousel-item-content text-over-image g-0">
<div class="card-body">
<div class="second-body">
<h2 class="card-title">Kiss Catfishing Goodbye</h2>
<p class="card-text">
Mumble Photo Verification is a promise that the person
you’re talking with is who they say they are. Look for the
blue check mark on other user’s profiles.
</p>
<a href="#" class="btn btn-warning">FIND OUT MORE</a>
</div>
</div>
</div>
</div>
<div class="carousel-item fluid-container">
<div class="cover-photo card">
<img
class="carousel-image d-block w-100"
src="images/success-stories.jpg"
alt="succcess stories"
/>
</div>
<div class="carousel-item-content text-over-image g-0">
<div class="card-body">
<div class="third-body">
<h2 class="card-title">We Love Success Stories</h2>
<p class="card-text">
Nothing makes us happier than hearing from our users who
have found love, friendship, or professional success on
Mumble.
</p>
<a href="#" class="btn btn-warning">READ THE STORIES</a>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-outer carousel-indicators">
<button
type="button"
data-bs-target="#carousel-block"
data-bs-slide-to="0"
class="active"
aria-current="true"
aria-label="Slide 1"
></button>
<button
type="button"
data-bs-target="#carousel-block"
data-bs-slide-to="1"
aria-label="Slide 2"
></button>
<button
type="button"
data-bs-target="#carousel-block"
data-bs-slide-to="2"
aria-label="Slide 3"
></button>
</div>
<button
class="carousel-control-prev d-none d-lg-block"
type="button"
data-bs-target="#carousel-block"
data-bs-slide="prev"
>
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button
class="carousel-control-next d-none d-lg-block"
type="button"
data-bs-target="#carousel-block"
data-bs-slide="next"
>
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<!-- Footer Section -->
<footer id="footer">
<div class="container-fluid">
<h3 class="follow-title">Follow <a href="">@Mumble_india</a></h3>
<div class="award">
<i class="fa-solid fa-award fa-4x"></i>
<p class="app-store"><i class="fa-brands fa-apple"></i>App Store</p>
<h5 class="trend">
Trend of the Year: <br />Connection
<p class="year">2022</p>
</h5>
</div>
<div class="social row text-over-image g-0">
<div class="brand-section col-md-6">
<a class="navbar-brand" href="#">
<i class="fa-brands fa-gratipay"></i> mumble</a
>
</div>
<div class="link-section col-md-6">
<a class="social-link" href=""
><i class="fa-brands fa-instagram-square fa-2x">  </i></a
>
<a class="social-link" href=""
><i class="fa-brands fa-facebook-square fa-2x">  </i></a
>
<a class="social-link" href=""
><i class="fa-brands fa-twitter fa-2x">  </i></a
>
<a class="social-link" href=""
><i class="fa-brands fa-pinterest fa-2x">  </i></a
>
</div>
</div>
<div class="footer-menu">
<li class="footer-menu-item">
<a class="footer-menu-link" href=""> FAQ</a> |
</li>
<li class="footer-menu-item">
<a class="footer-menu-link" href=""> Events</a> |
</li>
<li class="footer-menu-item">
<a class="footer-menu-link" href=""> Contact Us</a> |
</li>
<li class="footer-menu-item">
<a class="footer-menu-link" href=""> Guidelines</a> |
</li>
<li class="footer-menu-item">
<a class="footer-menu-link" href=""> Careers</a> |
</li>
<li class="footer-menu-item">
<a class="footer-menu-link" href=""> Investors</a> |
</li>
<li class="footer-menu-item">
<a class="footer-menu-link" href=""
> Modern Slavery Act Statement</a
> |
</li>
<li class="footer-menu-item">
<a class="footer-menu-link" href=""> Terms & Conditions</a
> |
</li>
<li class="footer-menu-item">
<a class="footer-menu-link" href=""> Privacy Policy</a> |
</li>
<li class="footer-menu-item">
<a class="footer-menu-link" href=""> Manage Cookies</a>
</li>
</div>
<div class="footer-caption">
<div class="footer-caption-copyright">
© 2022 Mumble | All Rights Reserved
</div>
</div>
</div>
</footer>
</body>
</html>