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
·74 lines (74 loc) · 3.28 KB
/
index.html
File metadata and controls
executable file
·74 lines (74 loc) · 3.28 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
<!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="stylesheet" href="store.html">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<header>
<nav>
<img class="logo" src="img/karma-logo.svg" alt="logo">
<a href="" class="a-options">Login</a>
<a href="" class="a-options">Help</a>
<a href="" class="a-options">Blog</a>
<a href="store.html" class="a-options">Store</a>
<a href="" class="a-options">How it Works</a>
<a href="index.html" class="a-options"><strong>Meet Karma</strong></a>
</nav>
</header>
<main>
<div class="container">
<img class="bg-image" src="img/first-background.jpg" alt="bg-img">
<div class="bg-text">
<p class="p-1">Introducing Karma</p>
<p class="p-2">Bring WiFi with you, everywhere you go.<p>
<button class="btn-learn-more">Learn More</button>
</div>
</div>
<div>
<p class="p-3">Everyone needs a little Karma.</p>
</div>
<div class="image-1">
<div>
<img class="img-1" src="img/icon-devices.svg" alt="device-img">
<p class="p-4">Internet for all devices</p>
</div>
<div>
<img class="img-1" src="img/icon-coffee.svg" alt="coffee-img">
<p class="p-4">Boost your productivity</p>
</div>
<div>
<img class="img-1" src="img/icon-refill.svg" alt="refill-img">
<p class="p-4" >Pay as You Go</p>
</div>
</div>
<aside class="addition-1">
<div class="aside-1">
<p class="p-new"> Wherever I am, I just don´t worry about my connection anymore! </p>
</div>
<div class="aside-2">
<a href="store.html" class="get-karma-today">Get Karma today</a>
</div>
<img class="img-2" src="homepage-feature.png" alt="homepage-img">
</aside>
</main>
<footer class="footer">
<div>
<hr class="hl"></hr>
<p class="p-5">Join us on</p>
</div>
<div class="btn-icon">
<button class="b-c-img"><img class="i-c-img" src="img/twitter-icon.svg" alt="twitter-img"></button>
<button class="b-c-img"><img class="i-c-img" src="img/facebook-icon.svg" alt="facebook-img"></button>
<button class="b-c-img"><img class="i-c-img" src="img/instagram-icon.svg" alt="instagram-img"></button>
</div>
<p class="p-6">© Karma Mobility, Inc.</p>
</footer>
</body>
</html>