-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathlanding.html
492 lines (462 loc) · 19.4 KB
/
landing.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<link rel="apple-touch-icon" sizes="76x76" href="./assets/img/favicon.ico">
<link rel="icon" type="image/png" href="./assets/img/favicon.ico">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<title>Anchor Bootstrap 4.1.3 UI Kit by WowThemesNet</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport'/>
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Nunito:300,300i,400,600,800" rel="stylesheet">
<!-- Font Awesome Icons -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<!-- Main CSS -->
<link href="./assets/css/main.css" rel="stylesheet"/>
<!-- Animation CSS -->
<link href="./assets/css/vendor/aos.css" rel="stylesheet"/>
</head>
<body>
<!--------------------------------------
NAVBAR
--------------------------------------->
<nav class="topnav navbar navbar-expand-lg navbar-dark bg-primary fixed-top">
<div class="container-fluid">
<a class="navbar-brand" href="./index.html"><i class="fas fa-anchor mr-2"></i><strong>Anchor UI</strong> Kit</a>
<button class="navbar-toggler collapsed" type="button" data-toggle="collapse" data-target="#navbarColor02" aria-controls="navbarColor02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="navbar-collapse collapse" id="navbarColor02" style="">
<ul class="navbar-nav mr-auto d-flex align-items-center">
<li class="nav-item">
<a class="nav-link" href="./index.html">Intro</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Examples </a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="./landing.html">Home Landing</a>
<a class="dropdown-item" href="./login.html">User Login</a>
<a class="dropdown-item" href="./blog.html">Blog Index</a>
<a class="dropdown-item" href="./page.html">Sample Page</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="./docs.html">Docs</a>
</li>
</ul>
<ul class="navbar-nav ml-auto d-flex align-items-center">
<li class="nav-item">
<span class="nav-link" href="#">
<a class="btn btn-info btn-round shadow-sm" href="#" data-toggle="modal" data-target="#modal_newsletter"><i class="fas fa-cloud-download-alt"></i> Download UI Kit <a href="https://github.com/wowthemesnet/Anchor-Bootstrap-UI-Kit/archive/master.zip" class="downloadzip" class="hidden"></a>
</a>
</span>
</li>
</ul>
</div>
</div>
</nav>
<!-- End Navbar -->
<!-------------------------------------
HEADER
--------------------------------------->
<div class="jumbotron jumbotron-lg jumbotron-fluid mb-0 pb-3 bg-primary position-relative">
<div class="container-fluid text-white h-100">
<div class="d-lg-flex align-items-center justify-content-between text-center pl-lg-5">
<div class="col pt-4 pb-4">
<h1 class="display-3">Build something <strong>cool</strong> & easy</h1>
<h5 class="font-weight-light mb-4">With this FREE Bootstrap 4.1.3<strong> UI Kit</strong> & <strong><i class="fab fa-sass fa-2x text-info"></i></strong></h5>
<a href="#" class="btn btn-lg btn-outline-white btn-round">Learn more</a>
</div>
<div class="col align-self-bottom align-items-right text-right h-max-380 position-relative z-index-1">
<img src="assets/img/demo/dashb.png" class="rounded img-fluid">
</div>
</div>
</div>
</div>
<svg style="-webkit-transform:rotate(-180deg); -moz-transform:rotate(-180deg); -o-transform:rotate(-180deg); transform:rotate(-180deg); margin-top: -1px;" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewbox="0 0 1440 126" style="enable-background:new 0 0 1440 126;" xml:space="preserve">
<path class="bg-primary" d="M685.6,38.8C418.7-11.1,170.2,9.9,0,30v96h1440V30C1252.7,52.2,1010,99.4,685.6,38.8z"/>
</svg>
<!--- END HEADER -->
<!--------------------------------------
FEATURES
--------------------------------------->
<div class="container pt-5 pb-5 mt-4" data-aos="fade-up">
<div class="row gap-y">
<div class="col-md-6 col-xl-4">
<div class="media">
<div class="iconbox iconmedium rounded-circle text-info mr-4">
<i class="fab fa-html5"></i>
</div>
<div class="media-body">
<h5>Responsive</h5>
<p class="text-muted">
Your website works on any device: desktop, tablet or mobile.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-xl-4">
<div class="media">
<div class="iconbox iconmedium rounded-circle text-purple mr-4">
<i class="fab fa-gulp"></i>
</div>
<div class="media-body">
<h5>Gulp</h5>
<p class="text-muted">
You can easily read, edit, and write your own code, or change everything.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-xl-4">
<div class="media">
<div class="iconbox iconmedium rounded-circle text-info mr-4">
<i class="fab fa-amazon"></i>
</div>
<div class="media-body">
<h5>UI Kit</h5>
<p class="text-muted">
There is a bunch of useful and necessary elements for developing your website.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-xl-4">
<div class="media">
<div class="iconbox iconmedium rounded-circle text-warning mr-4">
<i class="fab fa-sass"></i>
</div>
<div class="media-body">
<h5>Bootstrap 4.1.x</h5>
<p class="text-muted">
You can find our code well organized, commented and readable.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-xl-4">
<div class="media">
<div class="iconbox iconmedium rounded-circle text-info mr-4">
<i class="fas fa-layer-group"></i>
</div>
<div class="media-body">
<h5>Clean Code</h5>
<p class="text-muted">
As you can see in the source code, we provided a clean code.
</p>
</div>
</div>
</div>
<div class="col-md-6 col-xl-4">
<div class="media">
<div class="iconbox iconmedium rounded-circle text-salmon mr-4">
<i class="fas fa-burn"></i>
</div>
<div class="media-body">
<h5>Support</h5>
<p class="text-muted">
When you download this template, you'll freely receive future updates.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- End Features -->
<!--------------------------------------
SCREENSHOT
--------------------------------------->
<section class="pt-3 pb-4" data-aos="zoom-in">
<div class="container text-center">
<div class="row justify-content-center">
<div class="col-md-10">
<img class="d-block m-auto shadow" src="assets/img/demo/screenshot1.png" alt="">
</div>
</div>
</div>
</section>
<!-- End Screenshot -->
<!--------------------------------------
PRICING
--------------------------------------->
<div class="container pt-5 pb-4" data-aos="fade-up">
<div class="pb-5 pt-3 text-center">
<h2>Predictive and <strong>imperative approach</strong> towards application.</h2>
<p class="text-muted">
It’s a social collaboration trello software platform that employees really love to use, with rich personalized interface
</p>
</div>
<div class="card-deck card-pricing text-center">
<div class="card border-0 shadow-sm">
<div class="card-header bg-indigo border-0 pt-4 pb-4 text-white">
<h2 class="my-0 font-weight-normal mb-3">Personal</h2>
<h4 class="card-title pricing-card-title">$11 <small class="text-white">/ mo</small></h4>
</div>
<div class="card-body">
<ul class="list-unstyled mt-3 mb-4">
<li>10 users included</li>
<li>2 GB of storage</li>
<li>Email support</li>
<li>Help center access</li>
</ul>
<button type="button" class="btn btn-indigo btn-round">Start Free</button>
</div>
</div>
<div class="card border-0 shadow-sm">
<div class="card-header bg-info border-0 pt-4 pb-4">
<h2 class="my-0 font-weight-normal mb-3">Premium</h2>
<h4 class="card-title pricing-card-title">$15 <small>/ mo</small></h4>
</div>
<div class="card-body">
<ul class="list-unstyled mt-3 mb-4">
<li>20 users included</li>
<li>10 GB of storage</li>
<li>Priority email support</li>
<li>Help center access</li>
</ul>
<button type="button" class="btn btn-info btn-round"><i class="fab fa-telegram mr-2"></i> Start Free</button>
</div>
</div>
<div class="card border-0 shadow-sm">
<div class="card-header border-0 pt-4 pb-4 bg-indigo text-white">
<h2 class="my-0 font-weight-normal mb-3">Enterprise</h2>
<h4 class="card-title pricing-card-title">$29 <small class="textwhite">/ mo</small></h4>
</div>
<div class="card-body">
<ul class="list-unstyled mt-3 mb-4">
<li>30 users included</li>
<li>15 GB of storage</li>
<li>Phone and email support</li>
<li>Help center access</li>
</ul>
<button type="button" class="btn btn-indigo btn-round">Contact us</button>
</div>
</div>
</div>
</div>
<!-- End Pricing -->
<!--------------------------------------
FAQ
--------------------------------------->
<div class="container pt-5 pb-5" data-aos="fade-up">
<div class="text-center pt-3 pb-4">
<h2>Frequently Asked Questions</h2>
<p class="text-muted">
Transparent answers, licensing and lore ipsum super funny.
</p>
</div>
<div class="row gap-y justify-content-center">
<div class="col-md-5">
<h5>What is Anchor Bootstrap UI Kit?</h5>
<p class="text-muted">
Anchor Bootstrap UI Kit is a set of polished components that you can use for building your own template. This page is built with it.
</p>
</div>
<div class="col-md-5">
<h5>Is it updated to Bootstrap?</h5>
<p class="text-muted">
Yes, Anchor Bootstrap UI Kit is built with the latest Bootstrap version and will be updated whenever a new version is released.
</p>
</div>
<div class="col-md-5">
<h5>Can I use it for commercial projects?</h5>
<p class="text-muted">
Absolutely! Use Anchor Bootstrap UI Kit for any personal and commercial projects.
</p>
</div>
<div class="col-md-5">
<h5>Is there a way to thank you?</h5>
<p class="text-muted">
That is very nice of you. Sure, I would gladly accept a cup of coffee <a href="https://www.wowthemes.net/donate/">here</a>.
</p>
</div>
</div>
</div>
<!-- End FAQ -->
<!--------------------------------------
CTA
--------------------------------------->
<div class="container pt-4 pb-5 mb-5" data-aos="fade-up">
<div class="pb-4 text-center">
<h2>Ready? <strong><span class="text-secondary">Start</span> your free trial!</strong></h2>
<p class="text-muted">
A lot of features to develop your own lore ipsum. No credit card required.
</p>
</div>
<form class="row justify-content-center">
<div class="col-md-3">
<input type="text" class="form-control input-round w-100 form-control-lg" placeholder="First name*">
</div>
<div class="col-md-3">
<input type="text" class="form-control input-round w-100 form-control-lg" placeholder="E-mail address*">
</div>
<div class="col-md-3">
<button type="submit" class="btn btn-info btn-round btn-lg w-100">Start Free</button>
</div>
</form>
</div>
<!-- End CTA -->
<!------------------------------------------
DEMO MODAL & DONATE BUTTON ONLY - DON'T COPY
------------------------------------------->
<div class="modal fade" id="modal_newsletter" tabindex="-1" role="dialog" aria-labelledby="modal_newsletter" aria-hidden="true">
<div class="modal-dialog shadow-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<div class="d-flex align-items-center justify-content-center">
<em class="text-muted mr-2">Share this freebie:</em>
<!-- Share Facebook -->
<span class="c-pointer iconbox iconsmall rounded-circle bg-secondary text-white mr-1" data-sharer="facebook" data-url="https://www.wowthemes.net/anchor-free-bootstrap-ui-kit/"><i class="fab fa-facebook-f"></i></span>
<!-- Share Twitter -->
<span class="c-pointer iconbox iconsmall rounded-circle bg-info text-white mr-1" data-sharer="twitter" data-title="Download Anchor - Free Bootstrap 4.1.x UI Kit with Sass!" data-hashtags="bootstrap,free" data-url="https://www.wowthemes.net/anchor-free-bootstrap-ui-kit/"><i class="fab fa-twitter"></i></span>
<!-- Share Google+ -->
<span class="c-pointer iconbox iconsmall rounded-circle bg-danger text-white mr-1" data-sharer="googleplus" data-url="https://www.wowthemes.net/anchor-free-bootstrap-ui-kit/"><i class="fab fa-google"></i></span>
<!-- Share E-mail -->
<span class="c-pointer iconbox iconsmall rounded-circle bg-purple text-white mr-1" data-sharer="email" data-title="Bootstrap KIT Url" data-url="https://www.wowthemes.net/anchor-free-bootstrap-ui-kit/" data-subject="Download Anchor - Free Bootstrap 4.1.x UI Kit with Sass!" data-to="[email protected]"><i class="fas fa-envelope"></i></span>
<!-- Sharingbutton Pinterest -->
<span class="c-pointer iconbox iconsmall rounded-circle bg-danger text-white mr-1" data-sharer="pinterest" data-url="https://www.wowthemes.net/anchor-free-bootstrap-ui-kit/"><i class="fab fa-pinterest"></i></span>
</div>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="text-center mb-3">
<img src="assets/img/favicon.ico">
</div>
<h6 class="text-center font-weight-light ">Thanks for downloading Anchor Bootstrap UI Kit!</h6>
<h5 class="text-center mb-4">We'll e-mail you when a new version arrives! *</h5>
<form id="newsletter-form" action="https://www.themepush.com/sendy/subscribe" method="POST" accept-charset="utf-8">
<div class="d-none">
<label for="hp">HP</label>
<br>
<input type="text" name="hp" id="hp">
</div>
<div class="row justify-content-center align-items-center">
<div class="col-md-6">
<div class="form-group has-icon-left form-control-name">
<label class="sr-only" for="inputName">Your name</label>
<input type="text" name="name" id="name" required="" pattern="[A-Za-z\s]+" class="form-control" placeholder="Name">
</div>
</div>
<div class="col-md-6">
<div class="form-group has-icon-left form-control-email">
<label class="sr-only" for="inputEmail">Email address</label>
<input type="email" name="email" id="email" required="" class="form-control" placeholder="E-mail">
</div>
</div>
<input type="hidden" name="list" value="CVN62nDKE0qTf4XLs8J9iQ" checked="checked">
<div class="col-md-12 mb-3">
<input type="hidden" name="subform" value="yes">
<input onclick="requiredConsent()" class="btn btn-success btn-block shadow-sm" value="Send me updates & more freebies" type="submit" name="submit" id="submit">
</div>
<div class="col-md-12 mb-3 text-center">
<small class="d-block" style="color:#ccc;font-style:italic;line-height:1.4;">* This is a newsletter managed by WowThemes, the item author. It is the only way we can reach you out when a new version is released, so, please, subscribe!</small>
</div>
</div>
<div class="row justify-content-center d-none mt-3">
<label class="c-input c-checkbox small">
<input type="checkbox" name="gdpr" id="gdpr" checked="checked">
<span class="c-indicator"></span> I agree to the <a target="_blank" href="https://www.wowthemes.net/privacy-policy/#newsletter-subscription-forms">privacy policy</a>. </label>
</div>
</form>
</div>
</div>
</div>
</div>
<div style="position:fixed; bottom:20px;left:20px;">
<a href="https://www.wowthemes.net/donate/" target="_blank"><img class="rounded-circle shadow-lg" src="assets/img/demo/coffee.png" width="70" data-toggle="tooltip" data-placement="top" title="" data-original-title="Buy me a coffee!"></a>
</div>
<!--------------------------------------
END DEMO MODAL & DONATE BUTTON
--------------------------------------->
<!--------------------------------------
FOOTER
--------------------------------------->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewbox="0 0 1440 126" style="enable-background:new 0 0 1440 126;" xml:space="preserve">
<path class="bg-black" d="M685.6,38.8C418.7-11.1,170.2,9.9,0,30v96h1440V30C1252.7,52.2,1010,99.4,685.6,38.8z"/>
</svg>
<footer class="bg-black pb-5">
<div class="container">
<div class="row">
<div class="col-12 col-md mr-4">
<i class="fas fa-copyright text-white"></i>
<small class="d-block mt-3 mb-4 text-muted">©
<script>document.write(new Date().getFullYear())</script>
Anchor Bootstrap UI Kit, by <a target="_blank" href="https://www.wowthemes.net">WowThemes.net</a>. License MIT.
</small>
</div>
<div class="col-6 col-md">
<h5 class="mb-4 text-white">Features</h5>
<ul class="list-unstyled text-small">
<li><a class="text-muted" href="#">Cool stuff</a></li>
<li><a class="text-muted" href="#">Random feature</a></li>
<li><a class="text-muted" href="#">Team feature</a></li>
<li><a class="text-muted" href="#">Stuff for developers</a></li>
</ul>
</div>
<div class="col-6 col-md">
<h5 class="mb-4 text-white">Resources</h5>
<ul class="list-unstyled text-small">
<li><a class="text-muted" href="#">Resource</a></li>
<li><a class="text-muted" href="#">Resource name</a></li>
<li><a class="text-muted" href="#">Another resource</a></li>
<li><a class="text-muted" href="#">Final resource</a></li>
</ul>
</div>
<div class="col-6 col-md">
<h5 class="mb-4 text-white">Utilities</h5>
<ul class="list-unstyled text-small">
<li><a class="text-muted" href="#">Business</a></li>
<li><a class="text-muted" href="#">Education</a></li>
<li><a class="text-muted" href="#">Government</a></li>
<li><a class="text-muted" href="#">Gaming</a></li>
</ul>
</div>
<div class="col-6 col-md">
<h5 class="mb-4 text-white">About</h5>
<ul class="list-unstyled text-small">
<li><a class="text-muted" href="#">Team</a></li>
<li><a class="text-muted" href="#">Locations</a></li>
<li><a class="text-muted" href="#">Privacy</a></li>
<li><a class="text-muted" href="#">Terms</a></li>
</ul>
</div>
</div>
</div>
</footer>
<!--------------------------------------
JAVASCRIPTS
--------------------------------------->
<script src="./assets/js/vendor/jquery.min.js" type="text/javascript"></script>
<script src="./assets/js/vendor/popper.min.js" type="text/javascript"></script>
<script src="./assets/js/vendor/bootstrap.min.js" type="text/javascript"></script>
<script src="./assets/js/functions.js" type="text/javascript"></script>
<!-- Animation -->
<script src="./assets/js/vendor/aos.js" type="text/javascript"></script>
<noscript>
<style>
*[data-aos] {
display: block !important;
opacity: 1 !important;
visibility: visible !important;
}
</style>
</noscript>
<script>
AOS.init({
duration: 700
});
</script>
<!-- Disable animation on less than 1200px, change value if you like -->
<script>
AOS.init({
disable: function () {
var maxWidth = 1200;
return window.innerWidth < maxWidth;
}
});
</script>
</body>
</html>