forked from CodeYourFuture/HTML-CSS-Module-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·59 lines (59 loc) · 2.46 KB
/
index.html
File metadata and controls
executable file
·59 lines (59 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Karma</title>
<link href='https://fonts.googleapis.com/css?family=Roboto:400,500,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<nav class="navbar">
<ul class="menu">
<img src="C:/Users/aciun/Documents/GitHub/HTML-CSS-Coursework-Week2/img/karma-logo.svg" class="logo" width="20px"/>
<li class="item"><a href="#how">How It Works</a></li>
<li class="item"><a href="#store">Store</a></li>
<li class="item"><a href="#blog">Blog</a></li>
<li class="item"><a href="#help">Help</a></li>
<li class="item"><a href="#login">Login</a></li>
<li class="toggle"><a href="#"><span class="bars"></span></a></li>
</ul>
</nav>
<main>
<section class="parallax">
<h1>Introducing Karma</h1>
<h3>Bring WiFi with you, everywhere you go.</h3>
<button><a>Learn More</a></button>
</section>
<section class="features">
<h2>Everyone needs a little Karma.</h2>
<div class="features-1">
<div>
<img src="C:/Users/aciun/Documents/GitHub/HTML-CSS-Coursework-Week2/img/icon-devices.svg"/>
<p>Internet for all devices</p>
</div>
<div>
<img src="C:/Users/aciun/Documents/GitHub/HTML-CSS-Coursework-Week2/img/icon-coffee.svg"/>
<p>Boost your productivity</p>
</div>
<div>
<img src="C:/Users/aciun/Documents/GitHub/HTML-CSS-Coursework-Week2/img/icon-refill.svg"/>
<p>Pay as You Go</p>
</div>
</div>
</section>
<section class="social-media">
<div class="social">
<p>Join us on</p>
<img src="C:/Users/aciun/Documents/GitHub/HTML-CSS-Coursework-Week2/img/twitter-icon.svg"/>
<img src="C:/Users/aciun/Documents/GitHub/HTML-CSS-Coursework-Week2/img/facebook-icon.svg"/>
<img src="C:/Users/aciun/Documents/GitHub/HTML-CSS-Coursework-Week2/img/instagram-icon.svg"/>
</div>
</section>
<footer>© Karma Mobility, Inc.</footer>
</main>
</body>
</html>