forked from BulmaTemplates/bulma-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding.html
More file actions
93 lines (91 loc) · 3.01 KB
/
Copy pathlanding.html
File metadata and controls
93 lines (91 loc) · 3.01 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Landing - Free Bulma template</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="../css/bulma.css">
<link rel="stylesheet" type="text/css" href="../css/landing.css">
</head>
<body>
<section class="hero is-fullheight is-dark">
<div class="hero-head">
<div class="container">
<nav class="nav">
<div class="container">
<div class="nav-left">
<a class="nav-item" href="../index.html">
<img src="../images/bulma-white.png" alt="Description">
</a>
</div>
<span class="nav-toggle">
<span></span>
<span></span>
<span></span>
</span>
<div class="nav-right nav-menu">
<a class="nav-item">
About
</a>
<a class="nav-item">
Tour
</a>
<a class="nav-item">
FAQ
</a>
<a class="nav-item">
Contact
</a>
<span class="nav-item">
<a class="button is-default">
Get Early Access
</a>
</span>
</div>
</div>
</nav>
</div>
</div>
<div class="hero-body">
<div class="container has-text-centered">
<div class="columns is-vcentered">
<div class="column is-5">
<figure class="image is-4by3">
<img src="https://images.unsplash.com/photo-1461669802687-84a1aee43a29?dpr=1&auto=format&crop=entropy&fit=crop&w=800&h=600&q=80" class="promo-img" alt="Description">
</figure>
</div>
<div class="column is-6 is-offset-1">
<h1 class="title is-2">
Introducing Landing Page
</h1>
<h2 class="subtitle is-4">
It's time to say hello to bulma.
</h2>
<br>
<p class="control has-addons has-text-centered">
<input class="input is-expanded is-large" type="text" placeholder="Join the beta waitlist, you@example.org">
<a class="button is-large is-danger is-outlined">
Sign Up
</a>
</p>
</div>
</div>
</div>
</div>
<div class="hero-foot">
<div class="container">
<div class="tabs is-centered">
<ul>
<li><a href="http://bulma.io">Made with bulma</a></li>
<li><a>Copyright 2016 Bulma</a></li>
<li><a href="http://unsplash.com">Images via unsplash</a></li>
</ul>
</div>
</div>
</div>
</section>
<script async type="text/javascript" src="../js/bulma.js"></script>
</body>
</html>