-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·63 lines (63 loc) · 2.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Karma</title>
<link href='//fonts.googleapis.com/css?family=Roboto:400,500,300' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/normalize.css" />
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<nav class="top-navigation">
<div class="content">
<img src="img/karma-logo.svg" alt="Logo" width="26" height="70" alt="Karma" />
<ul class="nav-items">
<li class="active"><a href="#">Meet Karma</a></li>
<li><a href="#">How it Works</a></li>
<li><a href="#">Store</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Help</a></li>
<li><a href="#">Login</a></li>
</ul>
</div>
</nav>
<section class="afeature">
<div class="afeature-content">
<h1>Introducing Karma</h1>
<h3>Bring WiFi with you, everywhere you go.</h3>
<a href="#" class="button">Learn More</a>
</div>
</section>
<section class="cases">
<div class="content clearfix">
<h2>Everyone needs a little Karma</h2>
<ul>
<li>
<img width="127" height="127" src="img/icon-devices.svg" alt="Internet for all devices" />
<p class="case-text">Internet for all devices</p>
</li>
<li>
<img width="127" height="127" src="img/icon-coffee.svg" alt="Boost your productivity" />
<p class="case-text">Boost your productivity</p>
</li>
<li>
<img width="127" height="127" src="img/icon-refill.svg" alt="Pay as You Go"/>
<p class="case-text">Pay as You Go</p>
</li>
</ul>
</div>
</section>
<footer class="site-footer">
<div class="content">
<h3 class="footer-title">Join us on</h3>
<ul class="social-media">
<li class="twitter"><a href="#"><i class="fa fa-twitter"></i></a></li>
<li class="facebook"><a href="#"><i class="fa fa-facebook"></i></a></li>
<li class="instagram"><a href="#"><i class="fa fa-instagram"></i></a></li>
</ul>
<p class="copyright">© Karma Mobility, Inc.</p>
</div>
</footer>
</body>
</html>