-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
582 lines (538 loc) · 27.5 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
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
<!DOCTYPE html>
<html>
<head>
<title>monticello</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="img/favicon.png">
<link
href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap&subset=devanagari,latin-ext"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css"
integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="slick/slick.css" />
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/leaflet.js"></script>
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<section class="navigation" id="navigation-menu">
<div class="container">
<div class="navigation-menu row justify-content-between align-items-center">
<div class="logo col-xl-3 col-lg-3 col-md-3 col-sm-3 col-4">
<div class="logo-img">
<img src="img/Logo.png" alt="">
</div>
</div>
<div id="menu" class="menu col-xl-7 col-lg-6 col-md-7 row justify-content-around align-items-center">
<a href="header" class="jump-link navigation-item">
<div class="nav-item">
<div class="small-circle"></div>
<div class="navigation-item-text">About Us</div>
</div>
</a>
<a href="projects" class="navigation-item jump-link">
<div class="nav-item">
<div class="small-circle"></div>
<div class="navigation-item-text">Projects</div>
</div>
</a>
<a href="news" class="navigation-item jump-link">
<div class="nav-item">
<div class="small-circle"></div>
<div class="navigation-item-text">News</div>
</div>
</a>
<a href="contacts" class="navigation-item jump-link">
<div class="nav-item">
<div class="small-circle"></div>
<div class="navigation-item-text">Contact</div>
</div>
</a>
</div>
<div class="links col-xl-2 col-lg-2 col-md-3 col-sm-4 col-5">
<a href="https://www.facebook.com/">
<div class="social-link"><i class="fab fa-facebook-f"></i></div>
</a>
<a href="https://twitter.com/">
<div class="social-link"><i class="fab fa-twitter"></i></div>
</a>
<a href="https://www.instagram.com/?hl=uk">
<div class="social-link"><i class="fab fa-instagram"></i></div>
</a>
</div>
<div id="menu-toggle-btn" class="menu-toggle-btn col-xl-1">
<a href="javascript:void(0);" class="icon" onclick="openModalMenu()">
<i class="fa fa-bars"></i>
</a>
</div>
</div>
<div id="mobile-menu" class="mobile-menu jump-link">
<a href="header" class="menu-item jump-link">About Us</a>
<a href="projects" class="menu-item jump-link">Projects</a>
<a href="news" class="menu-item jump-link">News</a>
<a href="contacts" class="menu-item jump-link">Contact</a>
</div>
</div>
</section>
<section class="header" id="header">
<div class="header-slider">
<div class="slide slide-one">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-xl-10 header-title">
Simple & Modern
</div>
</div>
<div class="row justify-content-center text-center">
<div class="col-xl-10 col-lg-9 col-md-10 col-sm-10 col-10 header-description">
We make the world's beautiful every day
</div>
</div>
<div class="row justify-content-center">
<button class="scroll-icon">
<div class="scroll-arrow"><i class="fas fa-chevron-down"></i></div>
</button>
</div>
</div>
</div>
<div class="slide slide-two">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-xl-10 header-title">
Simple & Modern
</div>
</div>
</div>
<div class="row justify-content-center text-center">
<div class="col-xl-10 col-lg-9 col-md-10 col-sm-10 col-10 header-description">
We make the world's beautiful every day
</div>
</div>
<div class="row justify-content-center">
<button class="scroll-icon">
<div class="scroll-arrow"><i class="fas fa-chevron-down"></i></div>
</button>
</div>
</div>
<div class="slide slide-three">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-xl-10 header-title">
Simple & Modern
</div>
</div>
<div class="row justify-content-center text-center">
<div class="col-xl-10 col-lg-9 col-md-10 col-sm-10 col-10 header-description">
We make the world's beautiful every day
</div>
</div>
<div class="row justify-content-center">
<button class="scroll-icon">
<div class="scroll-arrow"><i class="fas fa-chevron-down"></i></div>
</button>
</div>
</div>
</div>
<div class="slide slide-four">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-xl-10 header-title">
Simple & Modern
</div>
</div>
<div class="row justify-content-center text-center">
<div class="col-xl-10 col-lg-9 col-md-10 col-sm-10 col-10 header-description">
We make the world's beautiful every day
</div>
</div>
<div class="row justify-content-center">
<button class="scroll-icon">
<div class="scroll-arrow"><i class="fas fa-chevron-down"></i></div>
</button>
</div>
</div>
</div>
<div class="slide slide-five">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-xl-10 header-title">
Simple & Modern
</div>
</div>
<div class="row justify-content-center text-center">
<div class="col-xl-10 col-lg-9 col-md-10 col-sm-10 col-10 header-description">
We make the world's beautiful every day
</div>
</div>
<div class="row justify-content-center">
<button class="scroll-icon">
<div class="scroll-arrow"><i class="fas fa-chevron-down"></i></div>
</button>
</div>
</div>
</div>
</div>
</section>
<section class="projects" id="projects">
<div class="container">
<div class="row justify-content-center text-center">
<div class="latest-news-line"></div>
</div>
<div class="row justify-content-center text-center">
<div class="col-xl-4 latest-news-title">
What we do
</div>
</div>
<div class="row project-one project-one-sm">
<div class="project-img col-xl-6 col-lg-6 col-md-6">
<img src="img/project1.png" alt="trade center">
</div>
<div class="project-description col-xl-6 col-lg-6 col-md-6">
<div class="project-pre-title">
One World
</div>
<div class="project-title">
Trade Center
</div>
<div class="project-text">
Increasing prosperity in our lives can be accomplished by having the right frame of mind. The
truth is, our thoughts are very powerful.
</div>
<div class="project-btn project-btn-sm">
<button>
More details
</button>
</div>
<div class="project-adress">
<span><i class="fas fa-map-marker-alt"></i></span>
<span>New York City, United States - 1776 feet</span>
</div>
</div>
</div>
<div class="row project-two project-two-sm">
<div class="project-description col-xl-6 col-lg-6 col-md-6">
<div class="project-pre-title">
International
</div>
<div class="project-title">
Commerce Centre
</div>
<div class="project-text">
Successful businesses have many things in common, today we’ll look at the big ‘R’ of recognition
and how a digital advertising network may help.
</div>
<div class="project-btn project-btn-sm">
<button>
<div>More details</div>
</button>
</div>
<div class="project-adress">
<span><i class="fas fa-map-marker-alt"></i></span>
<span>Hong Kong - 1588 Feet</span>
</div>
</div>
<div class="project-img col-xl-6 col-lg-6 col-md-6">
<img src="img/project2.png" alt="commerce-centre">
</div>
</div>
</div>
</section>
<section class="latest-news" id="news">
<div class="container">
<div class="row justify-content-center text-center">
<div class="latest-news-line"></div>
</div>
<div class="row justify-content-center text-center">
<div class="col-xl-4 latest-news-title">
Latest news
</div>
</div>
<div class="news-slider">
<div class="news news-one">
<div class="news-plus-sign"><i class="fas fa-plus"></i></div>
<div class="news-img">
<img src="img/news1.png" alt="building">
</div>
<div class="news-title">
See The Unmatched Beauty Of The Great.
</div>
<div class="news-content">
Free directories: directories are perfect for customers that are... searching for a particular
topic. What’s great about them is that you only have to post once and they are good for long
periods of time. It saves a lot of your time when you don’t have to resubmit your information
every week or every month. The bad news is most of your traffic won’t come from here. I still
feel it is worth it to get your link out there. Just take one day and set it aside for posting
to free directories. You won’t need to do it again for at least 6 months.
</div>
<div class="news-author">
<div class="author-img">
<img src="img/author1.png" alt="girl">
</div>
<div class="author-info">
<div class="author">
Isaac Dunn
</div>
<div class="date">
09 Feb 2017
</div>
</div>
</div>
</div>
<div class="news news-two">
<div class="news-plus-sign"><i class="fas fa-plus"></i></div>
<div class="news-img">
<img src="img/news2.png" alt="building">
</div>
<div class="news-title">
Effective Advertising Pointers.
</div>
<div class="news-content">
Having a home based business is a wonderful asset to your life...
The problem still stands, when it comes time to advertise your business for a cheap cost. I know
you have looked for this answer everywhere; I am here to share a few simple yet creative ways,
to advertise your new home business. A few suggestions would be, newspapers is the one source
that many people go to, when they have just opened there business.
</div>
<div class="news-author">
<div class="author-img">
<img src="img/author2.png" alt="girl">
</div>
<div class="author-info">
<div class="author">
Dominic Freeman
</div>
<div class="date">
24 Apr 2017
</div>
</div>
</div>
</div>
<div class="news news-three">
<div class="news-plus-sign"><i class="fas fa-plus"></i></div>
<div class="news-img">
<img src="img/news3.png" alt="building">
</div>
<div class="news-title">
Hypnotize Yourself Into The Ghost.
</div>
<div class="news-content">
There are many things that are important to catalog design....
Your images must be sharp and appealing. Your text and even the font you use for the text is
important. The cover page design and the design of your catalog’s product pages all play
important roles in designing a catalog that will bring in new customers and sales.
</div>
<div class="news-author">
<div class="author-img">
<img src="img/author3.png" alt="girl">
</div>
<div class="author-info">
<div class="author">
Alice Ward
</div>
<div class="date">
30 Dec 2017
</div>
</div>
</div>
</div>
<div class="news news-four">
<div class="news-plus-sign"><i class="fas fa-plus"></i></div>
<div class="news-img">
<img src="img/news1.png" alt="building">
</div>
<div class="news-title">
See The Unmatched Beauty Of The Great.
</div>
<div class="news-content">
Free directories: directories are perfect for customers that are... searching for a particular
topic. What’s great about them is that you only have to post once and they are good for long
periods of time. It saves a lot of your time when you don’t have to resubmit your information
every week or every month. The bad news is most of your traffic won’t come from here. I still
feel it is worth it to get your link out there. Just take one day and set it aside for posting
to free directories. You won’t need to do it again for at least 6 months.
</div>
<div class="news-author">
<div class="author-img">
<img src="img/author1.png" alt="girl">
</div>
<div class="author-info">
<div class="author">
Alice Ward
</div>
<div class="date">
30 Dec 2017
</div>
</div>
</div>
</div>
<div class="news news-five">
<div class="news-plus-sign"><i class="fas fa-plus"></i></div>
<div class="news-img">
<img src="img/news3.png" alt="building">
</div>
<div class="news-title">
Hypnotize Yourself Into The Ghost.
</div>
<div class="news-content">
There are many things that are important to catalog design....
Your images must be sharp and appealing. Your text and even the font you use for the text is
important. The cover page design and the design of your catalog’s product pages all play
important roles in designing a catalog that will bring in new customers and sales.
</div>
<div class="news-author">
<div class="author-img">
<img src="img/author3.png" alt="girl">
</div>
<div class="author-info">
<div class="author">
Alice Ward
</div>
<div class="date">
30 Dec 2017
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="gallery">
<div class="container">
<div class="row justify-content-center text-center">
<div class="gallery-line"></div>
</div>
<div class="row justify-content-center text-center">
<div class="col-xl-4 gallery-title">
Gallery
</div>
</div>
<div class="row gallery-img custom-gutter no-gutters">
<div class="custom-pd col-xl-6 col-lg-6 col-md-6 col-sm-12 col-12 img-position">
<div class="img-360">
<img src="img/360.png" alt="building">
</div>
<img src="img/gallery1.png" alt="building">
</div>
<div class=" col-xl-6 col-lg-6 col-md-6 col-sm-12 col-12">
<div class="row gallery-2-3 gallery-2-3-xs custom-gutter no-gutters">
<div class="custom-pd col-xl-6 col-lg-6 col-md-6 col-sm-6 col-6">
<img src="img/gallery2.png" alt="building">
</div>
<div class="custom-pd col-xl-6 col-lg-6 col-md-6 col-sm-6 col-6">
<img src="img/gallery3.png" alt="building">
</div>
</div>
<div class="row custom-gutter no-gutters">
<div class="custom-pd col-xl-6 col-lg-6 col-md-6 col-sm-6 col-6">
<img src="img/gallery4.png" alt="building">
</div>
<div class="custom-pd col-xl-6 col-lg-6 col-md-6 col-sm-6 col-6">
<img src="img/gallery5.png" alt="building">
</div>
</div>
</div>
</div>
<div class="gallery-btn">
<button class="btn-more">See more</button>
</div>
</div>
</section>
<section class="contacts" id="contacts">
<div class="map">
<div id="mapid"></div>
</div>
<div class="footer">
<div class="container">
<div class="row justify-content-center ">
<div class="col-xl-8 col-lg-8 col-md-10 col-sm-10 col-xs-10 col-11">
<div
class="row justify-content-between footer-logo-links align-items-center footer-logo-links-xs">
<div class="logo logo-xs">
<img src="img/Logo.png" alt="">
</div>
<div class="links">
<a href="https://www.facebook.com/" class="link">
<div class="social-link"><i class="fab fa-facebook-f"></i></div>
</a>
<a href="https://twitter.com/" class="link">
<div class="social-link"><i class="fab fa-twitter"></i></div>
</a>
<a href="https://www.instagram.com/?hl=uk" class="link">
<div class="social-link"><i class="fab fa-instagram"></i></div>
</a>
</div>
</div>
</div>
</div>
<div class="row justify-content-center footer-copyright footer-copyright-xs">
<div class="col-xl-8 col-lg-8 col-md-10 col-sm-10 col-xs-10 col-10">
<div class="row justify-content-start footer-copyright-line footer-copyright-line-xs">
<div class="footer-group">
Copyrights © 2017 Monticello Group
</div>
<div class="footer-Ga">
Made with<span class="copyright-heart"><i class="fas fa-heart"></i></span> by Ga Huy
</div>
</div>
</div>
</div>
</div>
</div>
<div class="get-in-touch text-center">
<div class="row justify-content-center text-center no-gutters">
<div class="col-xl-7 col-lg-10 col-md-10 col-sm-10 col-11 get-in-touch-container">
<div class="row justify-content-center text-center">
<div class="footer-line"></div>
</div>
<div class="row justify-content-center text-center">
<div class="footer-title footer-title-xs">
Get in Touch
</div>
</div>
<div class="row text-left footer-contact footer-contact-xs">
<div class="contact-info col-xl-6 col-lg-6 col-md-6">
<div class="info-item info-item-xs">
<span class="info-icon"><i class="fas fa-map-marker-alt"></i></span>
<div class="info-info">91 Nolan Extensions Suite 670</div>
</div>
<div class="info-item info-item-xs">
<span class="info-icon"><i class="fas fa-phone"></i></span>
<div class="info-info">+001 356-868-2454</div>
</div>
<div class="info-item info-item-xs">
<span class="info-icon"><i class="fas fa-inbox"></i></span>
<div class="info-info">[email protected]</div>
</div>
<div class="info-item info-item-xs">
<span class="info-icon"><i class="far fa-clock"></i></span>
<div class="info-info">From 07:05AM to 19:30PM</div>
</div>
</div>
<div class="contact-form col-xl-6 col-lg-6 col-md-6">
<form action="">
<div class=""><label for="client-name">Mollie Medina</label></div>
<div class="form-input"><input id="clien-name" type="text"></div>
<div class=""><label for="client-email">Email</label></div>
<div class="form-input"><input id="client-email" type="text"></div>
<button class="contact-submit">Submit</button>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="slick/slick.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-gZwIG9x3wUXg2hdXF6+rVkLF/0Vi9U8D2Ntg4Ga5I5BZpVkVxlJWbSQtXPSiUTtC0TjtGOmxa1AJPuV0CPthew=="
crossorigin=""></script>
<script src="js/index.js"></script>
</body>
</html>