-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
437 lines (436 loc) · 15.1 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
436
437
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie:edge" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.1.1/css/all.css"
integrity="sha384-O8whS3fhG2OnA5Kas0Y9l3cfpmYjapjI0E4theH4iuMD+pLhbf6JI0jIMfYcK3yZ"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/ekko-lightbox/5.3.0/ekko-lightbox.css"
/>
<link rel="stylesheet" href="assets/styles/bootstrap.css" />
<link rel="stylesheet" href="assets/styles/style.css" />
<title>Glozzom Theme</title>
</head>
<body>
<!-- START HERE -->
<nav class="navbar navbar-expand-sm navbar-dark bg-dark">
<div class="container">
<a href="index.html" class="navbar-brand">Glozzom</a
><button
class="navbar-toggler"
data-toggle="collapse"
data-target="#navbarNav"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item active ml-2">
<a href="index.html" class="nav-link">Home</a>
</li>
<li class="nav-item ml-2">
<a href="about.html" class="nav-link">About Us</a>
</li>
<li class="nav-item ml-2">
<a href="services.html" class="nav-link">Services</a>
</li>
<li class="nav-item ml-2">
<a href="blog.html" class="nav-link">Blog</a>
</li>
<li class="nav-item ml-2">
<a href="contact.html" class="nav-link">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- SHOWCASE SLIDER -->
<section id="showcase">
<div id="carouselId" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li class="active" data-target="#carouselId" data-slide-to="0"></li>
<li data-target="#carouselId" data-slide-to="1"></li>
<li data-target="#carouselId" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active carousel-image-1">
<div class="container">
<div class="carousel-caption d-none d-sm-block text-right mb-5">
<h1 class="display-3">Heading 1</h1>
<p class="lead">
Lorem ipsum, dolor sit amet consectetur adipisicing elit.
Accusantium hic ex repudiandae vero tempore officia recusandae
repellendus voluptatibus velit placeat, similique quis
molestiae, ipsam porro culpa facere reiciendis ducimus nulla?
</p>
<a href="" class="btn btn-danger btn-lg">Sign Up Now</a>
</div>
</div>
</div>
<div class="carousel-item carousel-image-2">
<div class="container">
<div class="carousel-caption d-none d-sm-block text-right mb-5">
<h1 class="display-3">Heading 2</h1>
<p class="lead">
Commodi nostrum quisquam voluptatem, eos excepturi ea itaque
nesciunt natus tempore quibusdam quasi doloremque, quam nulla
deleniti temporibus consectetur aliquam! Fugit reiciendis
suscipit ex ratione officia dolore cupiditate inventore
numquam.
</p>
<a href="" class="btn btn-primary btn-lg">Learn More</a>
</div>
</div>
</div>
<div class="carousel-item carousel-image-3">
<div class="container">
<div class="carousel-caption d-none d-sm-block text-right mb-5">
<h1 class="display-3">Heading 3</h1>
<p class="lead">
Impedit alias repellat magni excepturi at doloremque!
Recusandae accusamus inventore iusto sed non tempore, fugiat
saepe. Excepturi tempora doloribus, ad praesentium explicabo,
repellendus non id quia, aspernatur veritatis sunt officiis!
</p>
<a href="" class="btn btn-success btn-lg">Learn More</a>
</div>
</div>
</div>
</div>
<a
href="#carouselId"
class="carousel-control-prev"
role="button"
data-slide="prev"
><span class="carousel-control-prev-icon" area-hidden="true"></span
><span class="sr-only">Previous</span></a
><a
href="#carouselId"
class="carousel-control-next"
role="button"
data-slide="next"
><span class="carousel-control-next-icon" area-hidden="true"></span
><span class="sr-only">Next</span></a
>
</div>
</section>
<!-- HOME ICON SECTION -->
<section id="home-icons" class="py-5">
<div class="container">
<div class="row">
<div class="col-md-4 text-center mb-4">
<i class="fas fa-cog fa-3x mb-2"></i>
<h3>Turning Gears</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Maiores,
recusandae doloribus! Beatae.
</p>
</div>
<div class="col-md-4 text-center mb-4">
<i class="fas fa-cloud fa-3x mb-2"></i>
<h3>Sending Data</h3>
<p>
Nam, natus? Dolorem asperiores aliquid eius cumque quia atque.
Maxime, reiciendis tenetur.
</p>
</div>
<div class="col-md-4 text-center mb-4">
<i class="fas fa-cart-plus fa-3x mb-2"></i>
<h3>Making Money</h3>
<p>
Adipisci velit facilis minus quae neque ducimus inventore deserunt
ut nam magnam?
</p>
</div>
</div>
</div>
</section>
<!-- HOME HEADING SECTION -->
<section id="home-heading" class="py-5">
<div class="dark-overlay">
<div class="row">
<div class="col">
<div class="container pt-5">
<h1>Are You Ready To Get Started?</h1>
<p class="d-none d-md-block">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Molestiae, similique. Odio nulla nihil inventore, fugit minus
ipsum numquam?
</p>
</div>
</div>
</div>
</div>
</section>
<!-- INFO SECTION -->
<section id="info" class="py-3">
<div class="container">
<div class="row">
<div class="col-md-6 align-self-center">
<h3>Information</h3>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Beatae
ipsam porro voluptatibus quasi ipsa vel reiciendis quos facere
fugiat laborum.
</p>
<a href="about.html" class="btn btn-outline-danger btn-lg"
>Lear More</a
>
</div>
<div class="col-md-6">
<img src="./assets/img/laptop.png" alt="lapton" class="img-fluid" />
</div>
</div>
</div>
</section>
<!-- VIDEO PLAY -->
<section id="video-play">
<div class="dark-overlay">
<div class="row">
<div class="col">
<div class="container py-5">
<a
href=""
class="video"
data-video="https://www.youtube.com/embed/_-x90wGBD8U"
data-toggle="modal"
data-target="#videoModal"
><i class="fas fa-play fa-3x"></i
></a>
<h1>See What We Do</h1>
</div>
</div>
</div>
</div>
</section>
<!-- VIDEO-MODAL -->
<div class="modal fade" id="videoModal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<button class="close" data-dismiss="modal">
<span>×</span></button
><iframe
src=""
frameborder="0"
height="350"
width="100%"
allowfullscreen
></iframe>
</div>
</div>
</div>
</div>
<!-- PHOTO-GALLERY -->
<section id="gallery" class="py-5">
<div class="container">
<h1 class="text-center">Photo Gallery</h1>
<p class="text-center">Check out our photos</p>
<div class="row mb-4">
<div class="col-md-4">
<a
href="https://source.unsplash.com/561x561/?nature"
data-toggle="lightbox"
data-gallery="img-gallery"
data-height="560"
data-width="560"
><img
src="https://source.unsplash.com/561x561/?nature"
alt=""
class="img-fluid"
/></a>
</div>
<div class="col-md-4">
<a
href="https://source.unsplash.com/562x562/?nature"
data-toggle="lightbox"
data-gallery="img-gallery"
data-height="560"
data-width="560"
><img
src="https://source.unsplash.com/562x562/?nature"
alt=""
class="img-fluid"
/></a>
</div>
<div class="col-md-4">
<a
href="https://source.unsplash.com/563x563/?nature"
data-toggle="lightbox"
data-gallery="img-gallery"
data-height="560"
data-width="560"
><img
src="https://source.unsplash.com/563x563/?nature"
alt=""
class="img-fluid"
/></a>
</div>
</div>
<div class="row mb-4">
<div class="col-md-4">
<a
href="https://source.unsplash.com/564x564/?nature"
data-toggle="lightbox"
data-gallery="img-gallery"
data-height="560"
data-width="560"
><img
src="https://source.unsplash.com/564x564/?nature"
alt=""
class="img-fluid"
/></a>
</div>
<div class="col-md-4">
<a
href="https://source.unsplash.com/565x565/?nature"
data-toggle="lightbox"
data-gallery="img-gallery"
data-height="560"
data-width="560"
><img
src="https://source.unsplash.com/565x565/?nature"
alt=""
class="img-fluid"
/></a>
</div>
<div class="col-md-4">
<a
href="https://source.unsplash.com/566x566/?nature"
data-toggle="lightbox"
data-gallery="img-gallery"
data-height="560"
data-width="560"
><img
src="https://source.unsplash.com/566x566/?nature"
alt=""
class="img-fluid"
/></a>
</div>
</div>
</div>
</section>
<!-- NEWSLETTER -->
<section id="newsletter" class="text-center bg-dark text-white py-5">
<div class="container">
<div class="row">
<div class="col">
<h1>Sign Up For Our Newsletter</h1>
<p>
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Id
libero commodi fuga, officia aspernatur iusto totam autem modi.
Explicabo dolores saepe, aliquam velit sed ipsam ratione tempora
voluptatum laudantium eveniet.
</p>
<form class="form-inline justify-content-center">
<input
type="text"
class="form-control mb-2 mr-2"
placeholder="Enter Name"
/><input
type="text"
class="form-control mb-2 mr-2"
placeholder="Enter Email"
/>
<button class="btn btn-primary mb-2">Submit</button>
</form>
</div>
</div>
</div>
</section>
<!-- FOOTER -->
<footer id="main-footer" class="text-white p-4">
<div class="container">
<div class="row text-center">
<div class="col">
<p>Copyright ©<span id="year"></span> Glozzom</p>
</div>
</div>
</div>
</footer>
<!-- <span id="year"></span> -->
<!-- These are j-query links -->
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-w1Q4orYjBQndcko6MimVbzY0tgp4pWB4lZ7lr30WKz0vr/aWKhXdBNmNb5D92v7s"
crossorigin="anonymous"
></script>
<script>
// GET THE CURRENT YEAR FOR THE COPYRIGHT
$("#year").text(new Date().getFullYear());
// add smooth scrolling
$("#main-nav a").on("click", function (e) {
// check for a hash value
if (this.hash !== "") {
// prevent default behaviour
e.preventDefault();
// store hash
const hash = this.hash;
// animate smooth scrool(slim version j-query doesn't provide this service)
$("html,body").animate(
{
scrollTop: $(hash).offset().top,
},
900,
function () {
// add hash to url after scroll
window.location.hash = hash;
}
);
}
});
</script>
<script>
// carousel slider
$(".carousel").carousel({
interval: 6000,
pause: "hover",
});
</script>
<script>
// Video Play
$(function () {
// Auto play modal video
$(".video").click(function () {
var theModal = $(this).data("target"),
videoSRC = $(this).attr("data-video"),
videoSRCauto =
videoSRC +
"?modestbranding=1&rel=0&controls=0&showinfo=0&html5=1&autoplay=1";
$(theModal + " iframe").attr("src", videoSRCauto);
$(theModal + " button.close").click(function () {
$(theModal + " iframe").attr("src", videoSRC);
});
});
});
</script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/ekko-lightbox/5.3.0/ekko-lightbox.min.js"
integrity="sha512-Y2IiVZeaBwXG1wSV7f13plqlmFOx8MdjuHyYFVoYzhyRr3nH/NMDjTBSswijzADdNzMyWNetbLMfOpIPl6Cv9g=="
crossorigin="anonymous"
></script>
<script>
$(document).on("click", '[data-toggle="lightbox"]', function (event) {
event.preventDefault();
$(this).ekkoLightbox();
});
</script>
</body>
</html>