forked from dhg/Skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.html
68 lines (63 loc) · 1.79 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
<html lang="en">
<head>
<!-- Meta Tags -->
<meta charset="utf-8">
<title>Bones.css - Landing Example</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Responsive Viewport Code -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Fonts -->
<!-- CSS -->
<link rel="stylesheet" href="../css/bones.css">
<style>
.values {
color: #fff;
background: url('https://imgeasy.com/share/3A3Th9EZXb9DwpWOXjdo.jpg') no-repeat;
background-size: cover;
}
.values h1 {
color: #11DFC7;
}
</style>
</head>
<!-- Main HTML for our Page -->
<body>
<div class="Grid ">
<div class="Cell -7of12">
<h2 class="font-weight-800">Stop coding non-responsive sites.</h2>
<h2 class="italic">Let users view sites from anywhere.</h2>
<button class="button primary">Try Bones</button>
</div>
<div class="Cell -5of12">
<figure>
<img src="https://imgeasy.com/share/pS2PuWIIh6VKVWPGocdw.png" alt="iphone"></figure></div>
</div>
<div class="Grid center values">
<div class="Cell -4of12">
<h1>67%</h1>
<h4>
Purchase Increase </h4>
<p>Percentage of users more likely to purchase on mobile friendly site.</p>
</div>
<div class="Cell -4of12">
<h1>90%</h1>
<h4>Multi-device Users</h4>
<p>Most of the world accesses the internet on multiple devices.</p>
</div>
<div class="Cell -4of12">
<h1>66%</h1>
<h4>Sad Users</h4>
<p>Percentage of users that are frustrated with page load times.</p>
</div>
</div>
<div class="Grid center whitespace">
<div class="Cell -12of12">
<h4>Need help getting started?</h4>
<p>Bones is an amazingly easy place to start with responsive development. If you want to learn more, just visit the documentation!</p>
<button class="button primary">View Bones Docs</button>
</div>
</div>
</div>
</body>
</html>