-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
570 lines (566 loc) · 15.4 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
<!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" />
<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=Rubik:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<link
rel="shortcut icon"
href="./img/icons/favicon.svg"
type="image/x-icon"
/>
<link rel="stylesheet" type="text/css" href="css/loader.css"/>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<title>LaslesVPN</title>
</head>
<body>
<!-- LOADER -->
<div id="preloader">
<img src="./img/ball-preloader.gif" alt="preloader">
</div>
<!-- HEADER -->
<header class="header">
<div class="container">
<button
class="btn-burger"
id="btn-burger"
onclick="toggleMenu()"
>
<div class="line"></div>
</button>
<nav class="navbar">
<a href="./main.html">
<img
class="header-logo"
src="./img/logo/logo.svg"
alt="logo"
/>
</a>
<div class="header-nav" id="list-burger">
<ul class="nav-list">
<li class="list-item">
<a class="list-link" href="#about">About</a>
</li>
<li class="list-item">
<a class="list-link" href="#features"
>Features</a
>
</li>
<li class="list-item">
<a class="list-link" href="#pricing">Pricing</a>
</li>
<li class="list-item">
<a class="list-link" href="#testimonials"
>Testimonials</a
>
</li>
<li class="list-item">
<a class="list-link" href="#help">Help</a>
</li>
</ul>
<div class="header-buttons-group">
<a class="button-sign-in button" href="#"
>Sign In</a
>
<a class="button-sign-up button" href="#"
>Sign Up</a
>
</div>
</div>
</nav>
</div>
</header>
<!-- MAIN -->
<main class="main">
<!-- SECTION ABOUT -->
<section class="section">
<a name="about"></a>
<div class="section-about-body container">
<div class="section-about-title-block">
<h1 class="title-block-caption">
Want anything to be easy with LaslesVPN.
</h1>
<p class="title-block-subtitle subtitle">
Provide a network for all your needs with ease and
fun using LaslesVPN discover interesting features
from us.
</p>
<a class="title-block-button-start button" href="#"
>Get Started</a
>
</div>
<img
class="section-about-illustration"
src="./img/illustration/illustration-1.svg"
alt="illustration"
/>
</div>
</section>
<!-- SECTION MAIN INFO -->
<section class="section">
<div class="section-main-info-body container">
<div class="info-block users-info-block">
<img src="./img/icons/user-icon.svg" alt="user icon" />
<div class="main-info-title-block">
<h3 class="main-info-title">90+</h3>
<p class="main-info-subtitle">Users</p>
</div>
</div>
<img
src="./img/icons/line-v.svg"
alt="dividing line"
class="dividing-line"
/>
<div class="info-block locations-info-block">
<img
src="./img/icons/location-icon.svg"
alt="loaction icon"
/>
<div class="main-info-title-block">
<h3 class="main-info-title">30+</h3>
<p class="main-info-subtitle">Locations</p>
</div>
</div>
<img
src="./img/icons/line-v.svg"
alt="dividing line"
class="dividing-line"
/>
<div class="info-block servers-info-block">
<img
src="./img/icons/server-icon.svg"
alt="server icon"
/>
<div class="main-info-title-block">
<h3 class="main-info-title">50+</h3>
<p class="main-info-subtitle">Servers</p>
</div>
</div>
</div>
</section>
<!-- SECTION FEATURES -->
<section class="section">
<a name="features"></a>
<div class="section-features-body container">
<img
src="./img/illustration/illustration-2.svg"
alt="Illustration"
class="section-features-illustration"
/>
<div class="section-features-title-block">
<h2 class="title">
We Provide Many Features You Can Use
</h2>
<p class="features-subtitle subtitle">
You can explore the features that we provide with
fun and have their own functions each feature.
</p>
<ul class="features-list">
<li class="features-item">
Powerfull online protection.
</li>
<li class="features-item">
Internet without borders.
</li>
<li class="features-item">Supercharged VPN</li>
<li class="features-item">
No specific time limits.
</li>
</ul>
</div>
</div>
</section>
<!-- SECTION PRICING -->
<section class="section section-bg-grey">
<a name="pricing"></a>
<div class="section-pricing-body container">
<div class="section-pricing-title-content">
<h2 class="title">Choose Your Plan</h2>
<p class="subtitle">
Let's choose the package that is best for you and
explore it happily and <br />
cheerfully.
</p>
</div>
<div class="pricing-box">
<div id="box-free" class="box">
<div class="box-title-body">
<img
src="./img/pricing/free.svg"
alt="illustration"
/>
<h5 class="box-title">Free Plan</h5>
</div>
<div class="box-list-body-free">
<ul class="box-list">
<li class="box-item">
Unlimited Bandwitch
</li>
<li class="box-item">
Encrypted Connection
</li>
<li class="box-item">No Traffic Logs</li>
<li class="box-item">
Works on All Devices
</li>
</ul>
</div>
<div class="select-block-body">
<h3 class="select-title">Free</h3>
<button class="button button-select">
Select
</button>
</div>
</div>
<div id="box-standard" class="box">
<div class="box-title-body">
<img
src="./img/pricing/standard.svg"
alt="illustration"
/>
<h5 class="box-title">Standard Plan</h5>
</div>
<div class="box-list-body-standard">
<ul class="box-list">
<li class="box-item">
Unlimited Bandwitch
</li>
<li class="box-item">
Encrypted Connection
</li>
<li class="box-item">Yes Traffic Logs</li>
<li class="box-item">
Works on All Devices
</li>
<li class="box-item">Connect Anyware</li>
</ul>
</div>
<div class="select-block-body">
<h3 class="select-title">
$9 <span>/ mo</span>
</h3>
<button class="button button-select">
Select
</button>
</div>
</div>
<div id="box-premium" class="box">
<div class="box-title-body">
<img
src="./img/pricing/premium.svg"
alt="illustration"
/>
<h5 class="box-title">Premium Plan</h5>
</div>
<div class="box-list-body-premium">
<ul class="box-list">
<li class="box-item">
Unlimited Bandwitch
</li>
<li class="box-item">
Encrypted Connection
</li>
<li class="box-item">Yes Traffic Logs</li>
<li class="box-item">
Works on All Devices
</li>
<li class="box-item">Connect Anyware</li>
<li class="box-item">Get New Features</li>
</ul>
</div>
<div class="select-block-body">
<h3 class="select-title">
$12 <span>/ mo</span>
</h3>
<button class="button button-select">
Select
</button>
</div>
</div>
</div>
</div>
</section>
<!-- SECTION LOCATIONS -->
<section class="section">
<div class="section-location-body container">
<div class="section-location-title-body">
<h2 class="title">
Huge Global Network <br />
of Fast VPN
</h2>
<p class="subtitle">
See <strong>LaslesVPN</strong> everywhere to make it
easier for you when you move <br />
locations.
</p>
</div>
<img
src="./img/illustration/map.svg"
alt="locations map"
width="100%"
/>
<div class="companies">
<img
src="./img/companies/netflix.svg"
alt="netflix logo"
/>
<img
src="./img/companies/reddit.svg"
alt="reddit logo"
/>
<img
src="./img/companies/discord.svg"
alt="discord logo"
/>
<img
src="./img/companies/spotify.svg"
alt="spotify logo"
/>
</div>
</div>
</section>
<!-- SECTION TESTIMONIALS -->
<section class="section">
<a name="testimonials"></a>
<div class="section-testimonials-body container">
<div class="section-testimonials-title-body">
<h2 class="title">
Trusted by Thousands of <br />
Happy Customer
</h2>
<p class="subtitle">
These are the stories of our customers who have
joined us with great <br />
pleasure when using this crazy feature.
</p>
</div>
<div class="slider">
<div class="slider-item">
<div class="user-info-body">
<div class="personality-body">
<img
src="./img/user/user1.svg"
alt="user-photo"
/>
<div class="username-body">
<h5 class="username">Viezh Robert</h5>
<p class="dislocation">
Warsaw, Poland
</p>
</div>
</div>
<div class="user-rating">
<p class="rating">4.5</p>
<img
src="./img/icons/star.svg"
alt="star"
width="16"
height="16"
/>
</div>
</div>
<div class="commentary-block">
<p class="subtitle">
“Wow... I am very happy to use this VPN, it
turned out to be more than my expectations
and so far there have been no problems.
LaslesVPN always the best”.
</p>
</div>
</div>
<div class="slider-item">
<div class="user-info-body">
<div class="personality-body">
<img
src="./img/user/user2.svg"
alt="user-photo"
/>
<div class="username-body">
<h5 class="username">
Yessica Christy
</h5>
<p class="dislocation">Shanxi, China</p>
</div>
</div>
<div class="user-rating">
<p class="rating">4.3</p>
<img
src="./img/icons/star.svg"
alt="star"
width="16"
height="16"
/>
</div>
</div>
<div class="commentary-block">
<p class="subtitle">
“I like it because I like to travel far and
still can connect with high speed.”.
</p>
</div>
</div>
<div class="slider-item">
<div class="user-info-body">
<div class="personality-body">
<img
src="./img/user/user3.svg"
alt="user-photo"
/>
<div class="username-body">
<h5 class="username">Kim Young Jou</h5>
<p class="dislocation">
Seoul, South Korea
</p>
</div>
</div>
<div class="user-rating">
<p class="rating">4.8</p>
<img
src="./img/icons/star.svg"
alt="star"
width="16"
height="16"
/>
</div>
</div>
<div class="commentary-block">
<p class="subtitle">
“This is very unusual for my business that
currently requires a virtual private network
that has high security.”.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- SECTION SUBSCRIBE -->
<section class="section section-absolute">
<a name="help"></a>
<div class="section-subscribe-body">
<div class="subscribe-title-block">
<h2 class="title">
Subscribe Now for <br />
Get Special Features!
</h2>
<p class="subtitle">
Let's subscribe with us and find the fun.
</p>
</div>
<a href="#" class="button button-subscribe"
>Subscribe Now</a
>
</div>
</section>
</main>
<!-- FOOTER -->
<footer class="footer">
<div class="footer-body container">
<div class="footer-contacts-body">
<img src="./img/logo/logo.svg" alt="logo" />
<p class="footer-contacts-text">
<strong>LaslesVPN</strong> is a private virtual network
that
<br />
has unique features and has high security.
</p>
<div>
<a href="#"
><img
src="./img/footer links/facebook.svg"
alt="facebook link"
/></a>
<a href="#"
><img
src="./img/footer links/twitter.svg"
alt="twitter link"
/></a>
<a href="#"
><img
src="./img/footer links/instagram.svg"
alt="instagram link"
/></a>
</div>
<p class="text-copyright">©2020LaslesVPN</p>
</div>
<div class="footer-links">
<div class="footer-product footer-list-container">
<h5 class="list-title">Product</h5>
<ul class="footer-list">
<li class="footer-item">
<a class="footer-link" href="#">Download</a>
</li>
<li class="footer-item">
<a class="footer-link" href="#">Pricing</a>
</li>
<li class="footer-item">
<a class="footer-link" href="#">Locations</a>
</li>
<li class="footer-item">
<a class="footer-link" href="#">Server</a>
</li>
<li class="footer-item">
<a class="footer-link" href="#">Countries</a>
</li>
<li class="footer-item">
<a class="footer-link" href="#">Blog</a>
</li>
</ul>
</div>
<div class="footer-engage footer-list-container">
<h5 class="list-title">Engage</h5>
<ul class="footer-list">
<li class="footer-item">
<a class="footer-link" href="#">LaslesVPN</a>
</li>
<li class="footer-item">
<a class="footer-link" href="#">FAQ</a>
</li>
<li class="footer-item">
<a class="footer-link" href="#">Tutorials</a>
</li>
<li class="footer-item">
<a class="footer-link" href="#">About Us</a>
</li>
<li class="footer-item">
<a class="footer-link" href="#"
>Privacy Policy</a
>
</li>
<li class="footer-item">
<a class="footer-link" href="#"
>Terms of Service</a
>
</li>
</ul>
</div>
<div class="footer-earn footer-list-container">
<h5 class="list-title">Earn Money</h5>
<ul class="footer-list">
<li class="footer-item">
<a class="footer-link" href="#">Affiliate</a>
</li>
<li class="footer-item">
<a class="footer-link" href="#"
>Become Partner</a
>
</li>
</ul>
</div>
</div>
</div>
</footer>
<script src="js/preloader.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="js/slick.min.js"></script>
<script src="js/burger.js"></script>
<script src="js/pricing.js"></script>
<script src="js/slider.js"></script>
</body>
</html>