xxxxxxxxxx
1
<!--Main Navigation-->
2
<header>
3
<style>
4
/* Carousel styling */
5
#introCarousel,
6
.carousel-inner,
7
.carousel-item,
8
.carousel-item.active {
9
height: 100vh;
10
}
11
12
.carousel-item:nth-child(1) {
13
background-image: url('https://mdbootstrap.com/img/Photos/Others/images/76.jpg');
14
background-repeat: no-repeat;
15
background-size: cover;
16
background-position: center center;
17
}
18
19
.carousel-item:nth-child(2) {
20
background-image: url('https://mdbootstrap.com/img/Photos/Others/images/77.jpg');
21
background-repeat: no-repeat;
22
background-size: cover;
23
background-position: center center;
24
}
25
26
.carousel-item:nth-child(3) {
27
background-image: url('https://mdbootstrap.com/img/Photos/Others/images/78.jpg');
28
background-repeat: no-repeat;
29
background-size: cover;
30
background-position: center center;
31
}
32
33
/* Height for devices larger than 576px */
34
@media (min-width: 992px) {
35
#introCarousel {
36
margin-top: -58.59px;
37
}
38
}
39
40
.navbar .nav-link {
41
color: #fff !important;
42
}
43
</style>
44
45
<!-- Navbar -->
46
<nav class="navbar navbar-expand-lg navbar-dark d-none d-lg-block" style="z-index: 2000;">
47
<div class="container-fluid">
48
<!-- Navbar brand -->
49
<a class="navbar-brand nav-link" target="_blank" href="https://mdbootstrap.com/docs/standard/">
50
<strong>MDB</strong>
51
</a>
52
<button class="navbar-toggler" type="button" data-mdb-collapse-init data-mdb-target="#navbarExample01"
53
aria-controls="navbarExample01" aria-expanded="false" aria-label="Toggle navigation">
54
<i class="fas fa-bars"></i>
55
</button>
56
<div class="collapse navbar-collapse" id="navbarExample01">
57
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
58
<li class="nav-item active">
59
<a class="nav-link" aria-current="page" href="#intro">Home</a>
60
</li>
61
<li class="nav-item">
62
<a class="nav-link" href="https://www.youtube.com/channel/UC5CF7mLQZhvx8O5GODZAhdA" rel="nofollow"
63
target="_blank">Learn Bootstrap 5</a>
64
</li>
65
<li class="nav-item">
66
<a class="nav-link" href="https://mdbootstrap.com/docs/standard/" target="_blank">Download MDB UI KIT</a>
67
</li>
68
</ul>
69
70
<ul class="navbar-nav list-inline">
71
<!-- Icons -->
72
<li class="">
73
<a class="nav-link" href="https://www.youtube.com/channel/UC5CF7mLQZhvx8O5GODZAhdA" rel="nofollow"
74
target="_blank">
75
<i class="fab fa-youtube"></i>
76
</a>
77
</li>
78
<li class="">
79
<a class="nav-link" href="https://www.facebook.com/mdbootstrap" rel="nofollow" target="_blank">
80
<i class="fab fa-facebook-f"></i>
81
</a>
82
</li>
83
<li class="nav-item">
84
<a class="nav-link" href="https://twitter.com/MDBootstrap" rel="nofollow" target="_blank">
85
<i class="fab fa-twitter"></i>
86
</a>
87
</li>
88
<li class="nav-item">
89
<a class="nav-link" href="https://github.com/mdbootstrap/mdb-ui-kit" rel="nofollow" target="_blank">
90
<i class="fab fa-github"></i>
91
</a>
92
</li>
93
</ul>
94
</div>
95
</div>
96
</nav>
97
<!-- Navbar -->
98
99
<!-- Carousel wrapper -->
100
<div id="introCarousel" class="carousel slide carousel-fade shadow-2-strong" data-mdb-carousel-init>
101
<!-- Indicators -->
102
<div class="carousel-indicators">
103
<li data-mdb-target="#introCarousel" data-mdb-slide-to="0" class="active"></li>
104
<li data-mdb-target="#introCarousel" data-mdb-slide-to="1"></li>
105
<li data-mdb-target="#introCarousel" data-mdb-slide-to="2"></li>
106
</div>
107
108
<!-- Inner -->
109
<div class="carousel-inner">
110
<!-- Single item -->
111
<div class="carousel-item active">
112
<div class="mask" style="background-color: rgba(0, 0, 0, 0.6);">
113
<div class="d-flex justify-content-center align-items-center h-100">
114
<div class="text-white text-center" data-mdb-theme="dark">
115
<h1 class="mb-3">Learn Bootstrap 5 with MDB</h1>
116
<h5 class="mb-4">Best & free guide of responsive web design</h5>
117
<a class="btn btn-outline-light btn-lg m-2" data-mdb-ripple-init href="https://www.youtube.com/watch?v=c9B4TPnak1A"
118
role="button" rel="nofollow" target="_blank">Start tutorial</a>
119
<a class="btn btn-outline-light btn-lg m-2" data-mdb-ripple-init href="https://mdbootstrap.com/docs/standard/"
120
target="_blank" role="button">Download MDB UI KIT</a>
121
</div>
122
</div>
123
</div>
124
</div>
125
126
<!-- Single item -->
127
<div class="carousel-item">
128
<div class="mask" style="background-color: rgba(0, 0, 0, 0.3);">
129
<div class="d-flex justify-content-center align-items-center h-100">
130
<div class="text-white text-center">
131
<h2>You can place here any content</h2>
132
</div>
133
</div>
134
</div>
135
</div>
136
137
<!-- Single item -->
138
<div class="carousel-item">
139
<div class="mask" style="
140
background: linear-gradient(
141
45deg,
142
rgba(29, 236, 197, 0.7),
143
rgba(91, 14, 214, 0.7) 100%
144
);
145
">
146
<div class="d-flex justify-content-center align-items-center h-100" data-mdb-theme="dark">
147
<div class="text-white text-center">
148
<h2>And cover it with any mask</h2>
149
<a class="btn btn-outline-light btn-lg m-2" data-mdb-ripple-init
150
href="https://mdbootstrap.com/docs/standard/content-styles/masks/" target="_blank" role="button">Learn
151
about masks</a>
152
</div>
153
</div>
154
</div>
155
</div>
156
</div>
157
<!-- Inner -->
158
159
<!-- Controls -->
160
<a class="carousel-control-prev" href="#introCarousel" role="button" data-mdb-slide="prev">
161
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
162
<span class="sr-only">Previous</span>
163
</a>
164
<a class="carousel-control-next" href="#introCarousel" role="button" data-mdb-slide="next">
165
<span class="carousel-control-next-icon" aria-hidden="true"></span>
166
<span class="sr-only">Next</span>
167
</a>
168
</div>
169
<!-- Carousel wrapper -->
170
</header>
171
<!--Main Navigation-->
172
173
<!--Main layout-->
174
<main class="mt-5">
175
<div class="container">
176
<!--Section: Content-->
177
<section>
178
<div class="row">
179
<div class="col-md-6 gx-5 mb-4">
180
<div class="bg-image hover-overlay shadow-2-strong" data-mdb-ripple-init data-mdb-ripple-color="light">
181
<img src="https://mdbootstrap.com/img/new/slides/031.jpg" class="img-fluid" />
182
<a href="#!">
183
<div class="mask" style="background-color: rgba(251, 251, 251, 0.15);"></div>
184
</a>
185
</div>
186
</div>
187
188
<div class="col-md-6 gx-5 mb-4">
189
<h4><strong>Facilis consequatur eligendi</strong></h4>
190
<p class="text-muted">
191
Lorem ipsum dolor sit amet consectetur adipisicing elit. Facilis consequatur
192
eligendi quisquam doloremque vero ex debitis veritatis placeat unde animi laborum
193
sapiente illo possimus, commodi dignissimos obcaecati illum maiores corporis.
194
</p>
195
<p><strong>Doloremque vero ex debitis veritatis?</strong></p>
196
<p class="text-muted">
197
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quod itaque voluptate
198
nesciunt laborum incidunt. Officia, quam consectetur. Earum eligendi aliquam illum
199
alias, unde optio accusantium soluta, iusto molestiae adipisci et?
200
</p>
201
</div>
202
</div>
203
</section>
204
<!--Section: Content-->
205
206
<hr class="my-5" />
207
208
<!--Section: Content-->
209
<section class="text-center">
210
<h4 class="mb-5"><strong>Facilis consequatur eligendi</strong></h4>
211
212
<div class="row">
213
<div class="col-lg-4 col-md-12 mb-4">
214
<div class="card">
215
<div class="bg-image hover-overlay" data-mdb-ripple-init data-mdb-ripple-color="light">
216
<img src="https://mdbootstrap.com/img/new/standard/nature/184.jpg" class="img-fluid" />
217
<a href="#!">
218
<div class="mask" style="background-color: rgba(251, 251, 251, 0.15);"></div>
219
</a>
220
</div>
221
<div class="card-body">
222
<h5 class="card-title">Card title</h5>
223
<p class="card-text">
224
Some quick example text to build on the card title and make up the bulk of the
225
card's content.
226
</p>
227
<a href="#!" class="btn btn-primary" data-mdb-ripple-init>Button</a>
228
</div>
229
</div>
230
</div>
231
232
<div class="col-lg-4 col-md-6 mb-4">
233
<div class="card">
234
<div class="bg-image hover-overlay" data-mdb-ripple-init data-mdb-ripple-color="light">
235
<img src="https://mdbootstrap.com/img/new/standard/nature/023.jpg" class="img-fluid" />
236
<a href="#!">
237
<div class="mask" style="background-color: rgba(251, 251, 251, 0.15);"></div>
238
</a>
239
</div>
240
<div class="card-body">
241
<h5 class="card-title">Card title</h5>
242
<p class="card-text">
243
Some quick example text to build on the card title and make up the bulk of the
244
card's content.
245
</p>
246
<a href="#!" class="btn btn-primary" data-mdb-ripple-init>Button</a>
247
</div>
248
</div>
249
</div>
250
251
<div class="col-lg-4 col-md-6 mb-4">
252
<div class="card">
253
<div class="bg-image hover-overlay" data-mdb-ripple-init data-mdb-ripple-color="light">
254
<img src="https://mdbootstrap.com/img/new/standard/nature/111.jpg" class="img-fluid" />
255
<a href="#!">
256
<div class="mask" style="background-color: rgba(251, 251, 251, 0.15);"></div>
257
</a>
258
</div>
259
<div class="card-body">
260
<h5 class="card-title">Card title</h5>
261
<p class="card-text">
262
Some quick example text to build on the card title and make up the bulk of the
263
card's content.
264
</p>
265
<a href="#!" class="btn btn-primary" data-mdb-ripple-init>Button</a>
266
</div>
267
</div>
268
</div>
269
</div>
270
</section>
271
<!--Section: Content-->
272
273
<hr class="my-5" />
274
275
<!--Section: Content-->
276
<section class="mb-5">
277
<h4 class="mb-5 text-center"><strong>Facilis consequatur eligendi</strong></h4>
278
279
<div class="row d-flex justify-content-center">
280
<div class="col-md-6">
281
<form>
282
<!-- 2 column grid layout with text inputs for the first and last names -->
283
<div class="row mb-4">
284
<div class="col">
285
<div class="form-outline" data-mdb-input-init >
286
<input type="text" id="form3Example1" class="form-control" />
287
<label class="form-label" for="form3Example1">First name</label>
288
</div>
289
</div>
290
<div class="col">
291
<div class="form-outline" data-mdb-input-init >
292
<input type="text" id="form3Example2" class="form-control" />
293
<label class="form-label" for="form3Example2">Last name</label>
294
</div>
295
</div>
296
</div>
297
298
<!-- Email input -->
299
<div class="form-outline mb-4" data-mdb-input-init >
300
<input type="email" id="form3Example3" class="form-control" />
301
<label class="form-label" for="form3Example3">Email address</label>
302
</div>
303
304
<!-- Password input -->
305
<div class="form-outline mb-4" data-mdb-input-init >
306
<input type="password" id="form3Example4" class="form-control" />
307
<label class="form-label" for="form3Example4">Password</label>
308
</div>
309
310
<!-- Checkbox -->
311
<div class="form-check d-flex justify-content-center mb-4">
312
<input class="form-check-input me-2" type="checkbox" value="" id="form2Example3" checked />
313
<label class="form-check-label" for="form2Example3">
314
Subscribe to our newsletter
315
</label>
316
</div>
317
318
<!-- Submit button -->
319
<button type="submit" class="btn btn-primary btn-block mb-4" data-mdb-ripple-init>
320
Sign up
321
</button>
322
323
<!-- Register buttons -->
324
<div class="text-center">
325
<p>or sign up with:</p>
326
<button type="button" class="btn btn-primary btn-floating mx-1" data-mdb-ripple-init>
327
<i class="fab fa-facebook-f"></i>
328
</button>
329
330
<button type="button" class="btn btn-primary btn-floating mx-1" data-mdb-ripple-init>
331
<i class="fab fa-google"></i>
332
</button>
333
334
<button type="button" class="btn btn-primary btn-floating mx-1" data-mdb-ripple-init>
335
<i class="fab fa-twitter"></i>
336
</button>
337
338
<button type="button" class="btn btn-primary btn-floating mx-1" data-mdb-ripple-init>
339
<i class="fab fa-github"></i>
340
</button>
341
</div>
342
</form>
343
</div>
344
</div>
345
</section>
346
<!--Section: Content-->
347
</div>
348
</main>
349
<!--Main layout-->
350
351
<!--Footer-->
352
<footer class="bg-light text-lg-start">
353
<div class="py-4 text-center">
354
<a role="button" class="btn btn-primary btn-lg m-2" data-mdb-ripple-init
355
href="https://www.youtube.com/channel/UC5CF7mLQZhvx8O5GODZAhdA" rel="nofollow" target="_blank">
356
Learn Bootstrap 5
357
</a>
358
<a role="button" class="btn btn-primary btn-lg m-2" data-mdb-ripple-init href="https://mdbootstrap.com/docs/standard/" target="_blank">
359
Download MDB UI KIT
360
</a>
361
</div>
362
363
<hr class="m-0" />
364
365
<div class="text-center py-4 align-items-center">
366
<p>Follow MDB on social media</p>
367
<a href="https://www.youtube.com/channel/UC5CF7mLQZhvx8O5GODZAhdA" class="btn btn-primary m-1" role="button" data-mdb-ripple-init
368
rel="nofollow" target="_blank">
369
<i class="fab fa-youtube"></i>
370
</a>
371
<a href="https://www.facebook.com/mdbootstrap" class="btn btn-primary m-1" role="button" rel="nofollow" data-mdb-ripple-init
372
target="_blank">
373
<i class="fab fa-facebook-f"></i>
374
</a>
375
<a href="https://twitter.com/MDBootstrap" class="btn btn-primary m-1" role="button" rel="nofollow" data-mdb-ripple-init
376
target="_blank">
377
<i class="fab fa-twitter"></i>
378
</a>
379
<a href="https://github.com/mdbootstrap/mdb-ui-kit" class="btn btn-primary m-1" role="button" rel="nofollow" data-mdb-ripple-init
380
target="_blank">
381
<i class="fab fa-github"></i>
382
</a>
383
</div>
384
385
<!-- Copyright -->
386
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2);">
387
© 2020 Copyright:
388
<a class="text-dark" href="https://mdbootstrap.com/">MDBootstrap.com</a>
389
</div>
390
<!-- Copyright -->
391
</footer>
392
<!--Footer-->
1
1
1
1
Console errors: 0