-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
89 lines (71 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Goodness Landing Page</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,500,300' rel='stylesheet' type='text/css'>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<nav class = "top-navigation">
<div class = "content">
<img class="logo" src="images/karma-logo copy.svg" alt="Karma" width="26">
<ul class="links">
<li class="active">Meet Karma</li>
<li>How It works</li>
<li>Store</li>
<li>Blog</li>
<li>Help</li>
<li>Log in</li>
</ul>
</div>
</nav>
<section class = "main">
<section class = "content">
<h1> Introducing Karma </h1>
<h3> Bring WiFi with you, everywhere you go. </h3>
<button type="button" class="button"> Learn More </button>
</section>
</section>
<section class= "secondary">
<h2> Everyone needs a little Karma. </h2>
<section class="devices">
<img src="images/devices.jpg" alt="devices" width="125">
<p>Internet for all devices</p>
</section>
<section class="coffee">
<img src="images/coffee.jpg" alt="Coffee" width="125">
<p> Boost your productivity </p>
</section>
<section class="refill">
<img src="images/refill.jpg" alt="Refill" width=125>
<p> Pay as You Go </p>
</section>
</section>
<br style="clear:left;" />
<footer class="social">
<section class = "content">
<hr>
<section class="center">
<p> Join us on </p>
</section>
<ul class= "icons">
<li class="twitter">
<i class="fa fa-twitter"></i>
</li>
<li class="facebook">
<i class="fa fa-facebook"></i>
</li>
<li class="instagram">
<i class="fa fa-instagram"></i>
</li>
</ul>
<span class="copy">
© Karma Mobility, Inc.
</span>
</section>
</footer>
</body>
</html>