-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
573 lines (544 loc) · 25.9 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Focasnet</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="shortcut icon" type="image/png" href="img/logo/favicon.png"/>
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="css/font-awesome.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.carousel.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.theme.min.css">
<link rel="stylesheet prefetch" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
</head>
<body>
<!-- --------Header Section--------- -->
<!-- navigation -->
<nav class="navbar navbar-expand-lg w-100 navbar-light navbar-me">
<a class="navbar-brand text-white" href="#"><img src="img/logo/focasnet-logo.png" width="215" height="50" alt=""/></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-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 ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Project</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Login</a>
</li>
</ul>
</div>
</nav>
<!-- end navigation -->
<div class="site-header">
<div id="carouselIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselIndicators" data-slide-to="1"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100 img-bl-curve img-bottom-curve" src="img/bg_2.jpg" alt="First slide">
<div class="img-layer img-l-bl-curve top-rt-angle">
<div class="home-content">
<h1 class="resize">JOIN OUR UNIQUE <br> BUSINESS OPPORTUNITY</h1>
<p class="t-desk">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
<a href="#" class="btn btn-warning h-button" style="border-radius: 0;">View Our Work</a>
</div>
</div>
</div>
<div class="carousel-item">
<img class="d-block w-100 img-bl-curve img-bottom-curve" src="img/bg_1.jpg" alt="Second slide">
<div class="img-layer img-l-bl-curve top-rt-angle">
<div class="home-content">
<h1 class="resize">VIRTUALLY BUILD <br> YOUR WORLD</h1>
<p class="t-desk">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
<a href="#" class="btn btn-warning h-button" style="border-radius: 0;">View Our Work</a>
</div>
</div>
</div>
</div>
</div>
</div>
<section class="bg-light py-5">
<div class="container ">
<h3 class="text-center">Services</h3>
<p class="text-center mb-5">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
<div class="row">
<div class="col-md-9 column-center">
<div class="row">
<div class="col-sm-4">
<div class="flip-box mb-5">
<div class="flip-box-inner">
<div class="flip-box-front">
<i class="fa fa-object-group fa-2x ico-style" aria-hidden="true" style=""></i>
<h4>Perfectly Design</h4>
</div>
<div class="flip-box-back">
<div class="back-ico-style"></div>
<p class="p-3" style="padding-top: 0 !important;">Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic.</p>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="flip-box mb-5">
<div class="flip-box-inner">
<div class="flip-box-front">
<i class="fa fa-object-group fa-2x ico-style" aria-hidden="true" style=""></i>
<h4>Carefully Planned</h4>
</div>
<div class="flip-box-back">
<div class="back-ico-style"></div>
<p class="p-3" style="padding-top: 0 !important;">Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic.</p>
</div>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="flip-box mb-5">
<div class="flip-box-inner">
<div class="flip-box-front">
<i class="fa fa-object-group fa-2x ico-style" aria-hidden="true" style=""></i>
<h4>Smartly Execute</h4>
</div>
<div class="flip-box-back">
<div class="back-ico-style"></div>
<p class="p-3" style="padding-top: 0 !important;">Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container py-5">
<div class="row">
<div class="col-md-5">
<img src="img/imgr.jpg" style="width: 100%; height: 320px;" alt=""/>
</div>
<div class="col-md-7">
<h3>Let the Focasnet Party begin!</h3>
<p>The moment you decide to be a part of this incredible Focasnet family. The first step is to just begin with a party! A group of women chatting over tea is actually how business is done at Focasnet. With zero investment initially, you just need to have a venue, guests and some refreshments and you are ready to throw your very own Focasnet party.<br><br>
When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way.</p>
<a href="#" class="btn btn-warning" style="border-radius: 0;">Learn More</a>
</div>
</div>
</div>
</section>
<section style="border-top: 1px solid #f8f9fa;">
<div class="container py-5">
<h3 class="text-center">Our satisfied customer says</h3>
<p class="text-center">Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in</p>
<div id="carousel3d" class="">
<carousel-3d :perspective="0" :space="200" :display="5" :controls-visible="true" :controls-prev-html="'❬'" :controls-next-html="'❭'" :controls-width="30" :controls-height="60" :clickable="true" :autoplay="true" :autoplay-timeout="5000">
<slide :index="0">
<img class="mb-2" src="img/person_1.jpg" alt=""/>
<p><i class="fa fa-quote-left mr-1" style="color: #0db5c2;margin-top: -5px"></i>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<span class="pname">Garreth Smith</span>
<span class="pposition">Marketing Manager</span>
</slide>
<slide :index="1">
<img class="mb-2" src="img/person_2.jpg" alt=""/>
<p><i class="fa fa-quote-left mr-1" style="color: #0db5c2;margin-top: -5px"></i>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<span class="pname">Garreth Smith</span>
<span class="pposition">Marketing Manager</span>
</slide>
<slide :index="2">
<img class="mb-2" src="img/person_3.jpg" alt=""/>
<p><i class="fa fa-quote-left mr-1" style="color: #0db5c2;margin-top: -5px"></i>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<span class="pname">Garreth Smith</span>
<span class="pposition">Marketing Manager</span>
</slide>
<slide :index="3">
<img class="mb-2" src="img/person_4.jpg" alt=""/>
<p><i class="fa fa-quote-left mr-1" style="color: #0db5c2;margin-top: -5px"></i>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<span class="pname">Garreth Smith</span>
<span class="pposition">Marketing Manager</span>
</slide>
<slide :index="4">
<img class="mb-2" src="img/person_4.jpg" alt=""/>
<p><i class="fa fa-quote-left mr-1" style="color: #0db5c2;margin-top: -5px"></i>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<span class="pname">Garreth Smith</span>
<span class="pposition">Marketing Manager</span>
</slide>
<slide :index="5">
<img class="mb-2" src="img/person_4.jpg" alt=""/>
<p><i class="fa fa-quote-left mr-1" style="color: #0db5c2;margin-top: -5px"></i>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts.</p>
<span class="pname">Garreth Smith</span>
<span class="pposition">Marketing Manager</span>
</slide>
</carousel-3d>
</div>
</div>
</section>
<section class="bg-light" style="background-image: url(img/bg_3.jpg); background-position: center center; background-size: cover;">
<div style="background-color: black; opacity: 0.8;">
<div class="container py-5">
<div class="row">
<br/>
<div class="col text-center">
<h3 class="mb-3" style="color: white">Some Interesting Facts</h3>
</div>
</div>
<div class="row text-center">
<div class="col mb-1">
<div class="counter">
<!--<i class="fa fa-code fa-2x sq"></i>-->
<h2 class="timer count-title count-number" data-to="100" data-speed="1500"></h2>
<p class="count-text ">Our Customer</p>
</div>
</div>
<div class="col mb-1">
<div class="counter">
<!-- <i class="fa fa-coffee fa-2x sq"></i>-->
<h2 class="timer count-title count-number" data-to="1700" data-speed="1500"></h2>
<p class="count-text ">Happy Clients</p>
</div>
</div>
<div class="col mb-1">
<div class="counter">
<!--<i class="fa fa-lightbulb-o fa-2x sq"></i>-->
<h2 class="timer count-title count-number" data-to="11900" data-speed="1500"></h2>
<p class="count-text ">Project Complete</p>
</div>
</div>
<div class="col mb-1">
<div class="counter">
<!--<i class="fa fa-bug fa-2x sq"></i>-->
<h2 class="timer count-title count-number" data-to="157" data-speed="1500"></h2>
<p class="count-text ">Coffee With Clients</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!------------------ Team --------------->
<section>
<div class="container py-5">
<div class="row">
<div class="col-md-6">
<h3 style="margin: 0">Our Architect Team</h3>
<h5>Meet our team</h5>
</div>
<div class="col-md-6">
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in</p>
</div>
</div>
<div class="row mt-30">
<div class="col-md-3 col-sm-6">
<div class="box5">
<img src="img/staff-1.jpg" alt="">
<ul class="icon">
<li><a href="#" class="fa fa-facebook"></a></li>
<li><a href="#" class="fa fa-twitter"></a></li>
<li><a href="#" class="fa fa-google-plus"></a></li>
<li><a href="#" class="fa fa-instagram"></a></li>
</ul>
<div class="box-content">
<h3 class="title">Williamson</h3>
<span class="post">Web Developer</span>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="box5">
<img src="img/staff-2.jpg" alt="">
<ul class="icon">
<li><a href="#" class="fa fa-facebook"></a></li>
<li><a href="#" class="fa fa-twitter"></a></li>
<li><a href="#" class="fa fa-google-plus"></a></li>
<li><a href="#" class="fa fa-instagram"></a></li>
</ul>
<div class="box-content">
<h3 class="title">Kristiana</h3>
<span class="post">Web Designer</span>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="box5">
<img src="img/staff-3.jpg" alt="">
<ul class="icon">
<li><a href="#" class="fa fa-facebook"></a></li>
<li><a href="#" class="fa fa-twitter"></a></li>
<li><a href="#" class="fa fa-google-plus"></a></li>
<li><a href="#" class="fa fa-instagram"></a></li>
</ul>
<div class="box-content">
<h3 class="title">Kristiana</h3>
<span class="post">Web Designer</span>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="box5">
<img src="img/staff-4.jpg" alt="">
<ul class="icon">
<li><a href="#" class="fa fa-facebook"></a></li>
<li><a href="#" class="fa fa-twitter"></a></li>
<li><a href="#" class="fa fa-google-plus"></a></li>
<li><a href="#" class="fa fa-instagram"></a></li>
</ul>
<div class="box-content">
<h3 class="title">Kristiana</h3>
<span class="post">Web Designer</span>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="bg-light">
<div class="container py-5">
<div class="row">
<div class="col-md-6">
<h3 style="margin: 0">From Our Blog</h3>
<h5>Recent Post</h5>
</div>
<div class="col-md-6">
<p>Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div id="news-slider" class="owl-carousel">
<div class="post-slide">
<div class="post-img">
<a href="#">
<img src="img/image_1.jpg" alt="">
<div class="post-date">
<span class="date">10</span>
<span class="month">jan</span>
</div>
</a>
</div>
<div class="post-review">
<h3 class="post-title"><a href="#">Latest News Post</a></h3>
<ul class="post-bar">
<li><i class="fa fa-user"></i><a href="#">admin</a></li>
<li><i class="fa fa-comment"></i><a href="#">5</a></li>
</ul>
<p class="post-description">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ad magni, nesciunt obcaecati possimus quasi quibusdam quos ratione sequi sit veritatis.</p>
</div>
</div>
<div class="post-slide">
<div class="post-img">
<a href="#">
<img src="img/image_4.jpg" alt="">
<div class="post-date">
<span class="date">13</span>
<span class="month">jan</span>
</div>
</a>
</div>
<div class="post-review">
<h3 class="post-title"><a href="#">Latest News Post</a></h3>
<ul class="post-bar">
<li><i class="fa fa-user"></i><a href="#">admin</a></li>
<li><i class="fa fa-comment"></i><a href="#">7</a></li>
</ul>
<p class="post-description">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ad magni, nesciunt obcaecati possimus quasi quibusdam quos ratione sequi sit veritatis.</p>
</div>
</div>
<div class="post-slide">
<div class="post-img">
<a href="#">
<img src="img/image_3.jpg" alt="">
<div class="post-date">
<span class="date">13</span>
<span class="month">jan</span>
</div>
</a>
</div>
<div class="post-review">
<h3 class="post-title"><a href="#">Latest News Post</a></h3>
<ul class="post-bar">
<li><i class="fa fa-user"></i><a href="#">admin</a></li>
<li><i class="fa fa-comment"></i><a href="#">7</a></li>
</ul>
<p class="post-description">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ad magni, nesciunt obcaecati possimus quasi quibusdam quos ratione sequi sit veritatis.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container py-5">
<div class="row">
<div class="col-md-7">
<h3>We Make Perfection</h3>
<p>On her way she met a copy. The copy warned the Little Blind Text, that where it came from it would have been rewritten a thousand times and everything that was left from its origin would be the word "and" and the Little Blind Text should turn around and return to its own, safe country. But nothing the copy said could convince her and so it didn’t take long until a few insidious Copy Writers ambushed her, made her drunk with Longe and Parole and dragged her into their agency, where they abused her for their.<br><br>
When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then she continued her way.</p>
<a href="#" class="btn btn-warning" style="border-radius: 0;">Learn More</a>
</div>
<div class="col-md-5" >
<img src="img/about.jpg" style="width: 100%; height: 360px;" alt="" class="wemake-img"/>
</div>
</div>
</div>
</section>
<section class="py-5" style="background-color: #0db5c2">
<div class="container">
<div class="row">
<div class="col-md-6">
<div class="divr">
<h4>NEWSLETTER</h4>
<p class="text-light">Enter your E-mail to receive our letest offers.</p>
</div>
</div>
<div class="col-md-6">
<div class="single">
<div class="input-group">
<input type="email" class="form-control" placeholder="Enter your email" style="border-radius: 0; border: 0;">
<span class="input-group-btn">
<button class="btn btn-theme" type="submit" style="border-radius: 0; border: 0; padding: 7px">Subscribe</button>
</span>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="text-white" style="border-top: 5px solid #989898">
<div class="py-5" style="background-color:#252525">
<div class="container">
<div class="row">
<div class="col-md-4">
<img src="img/logo/focasnet-logo.png" width="200" height="50" alt=""/>
<!--<div class="mb-2" style="border-top: 1px solid #444"></div>-->
<p>The moment you decide to be a part of this incredible Focasnet family. The first step is to just begin with a party! A group of women chatting over tea is actually how business is done at Focasnet. With zero investment initially,</p>
<a class="btn btn-light mb-2" style="border-radius: 0; color:black">Explore us</a>
</div>
<div class="col-md-2">
<h5>QUICK LINK</h5>
<div class="mb-2" style="border-top: 1px solid #444"></div>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Project</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Login</a></li>
</ul>
</div>
<div class="col-md-3">
<h5>SERVICES</h5>
<div class="mb-2" style="border-top: 1px solid #444"></div>
<ul>
<li><a href="#">Architectural Design</a></li>
<li><a href="#">Interior Design</a></li>
<li><a href="#">Exterior Design</a></li>
<li><a href="#">Lighting Design</a></li>
<li><a href="#">AutoCAD Service</a></li>
</ul>
</div>
<div class="col-md-3">
<h5>GET IN TOUCH</h5>
<div class="mb-2" style="border-top: 1px solid #444"></div>
<ul>
<li>
<div class="d-flex" style="margin-top: 13px">
<h6>OFFICE</h6><i class="fa fa-map-marker" style="margin-left: 5em;"></i>
</div>
<p>350 Flatbush ave New York,NY 10018 USA.</p>
</li>
<li>
<div class="d-flex" style="">
<h6>PHONE</h6><i class="fa fa-phone" style="margin-left: 5em;"></i>
</div>
<p>212 386 5575</p>
</li>
<li>
<div class="d-flex" style="">
<h6>EMAIL</h6><i class="fa fa-envelope" style="margin-left: 5em;"></i>
</div>
<a href="mailto:[email protected]">[email protected]</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="" style="background-color: #1b1b1b; margin-bottom: 0">
<div class="container">
<div class="row">
<div class="col-md-8 pt-4">
<p>Copyright Ⓒ 2018 All rights reserved</p>
</div>
<div class="col-md-4 pt-4">
<ul class="social-network social-circle">
<li><a href="#" class="icoRss" title="Rss"><i class="fa fa-rss"></i></a></li>
<li><a href="#" class="icoFacebook" title="Facebook"><i class="fa fa-facebook"></i></a></li>
<li><a href="#" class="icoTwitter" title="Twitter"><i class="fa fa-twitter"></i></a></li>
<li><a href="#" class="icoGoogle" title="Google +"><i class="fa fa-google-plus"></i></a></li>
<li><a href="#" class="icoLinkedin" title="Linkedin"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<a href="#0" class="cd-top js-cd-top">Top</a>
<!-- ----------Script File---------- -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/owl-carousel/1.3.3/owl.carousel.min.js"></script>
<script>
$(window).scroll(function() {
if($(this).scrollTop()>5) {
$( ".navbar-me" ).addClass("fixed-me");
} else {
$( ".navbar-me" ).removeClass("fixed-me");
}
});
</script>
<!--<script src="//production-assets.codepen.io/assets/editor/live/console_runner-079c09a0e3b9ff743e39ee2d5637b9216b3545af0de366d4b9aad9dc87e26bfd.js"></script>
<script src="//production-assets.codepen.io/assets/editor/live/events_runner-73716630c22bbc8cff4bd0f07b135f00a0bdc5d14629260c3ec49e5606f98fdd.js"></script>
<script src="//production-assets.codepen.io/assets/editor/live/css_live_reload_init-2c0dc5167d60a5af3ee189d570b1835129687ea2a61bee3513dee3a50c115a77.js"></script>
<script src="//production-assets.codepen.io/assets/common/stopExecutionOnTimeout-b2a7b3fe212eaa732349046d8416e00a9dec26eb7fd347590fbced3ab38af52e.js"></script>-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.1.7/vue.js"></script>
<script src="https://rawgit.com/Wlada/vue-carousel-3d/master/dist/vue-carousel-3d.min.js"></script>
<script>
new Vue({
el: '#carousel3d',
data: {
slides: 7
},
components: {
'carousel-3d': Carousel3d.Carousel3d,
'slide': Carousel3d.Slide
}
})
//# sourceURL=pen.js
</script>
<script src="js/main.js"></script>
<script src="js/custom.js"></script>
</body>
</html>