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
·70 lines (68 loc) · 2.64 KB
/
index.html
File metadata and controls
executable file
·70 lines (68 loc) · 2.64 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
<!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 BAR -->
<nav class="navbar">
<a class="navbar-brand" href="">
<div class="logo-img">
<img src = "img/karma-logo.svg" alt="Logo image"/>
</div>
</a>
<ul class="list">
<li class="list-items"><a href=""> Meet Karma</a></li>
<li class="list-items"><a href="">How it works</a></li>
<li class="list-items"><a href="">Store</a></li>
<li class="list-items"><a href="">Blog</a></li>
<li class="list-items"><a href="">Help</a></li>
<li class="list-items"><a href="">Login</a></li>
</ul>
</nav>
<!-- BACKGROUND -->
<div class="picture">
<div class="picture-content">
<h1>Introducing Karma</h1>
<h3>Bring WIFI with you, everywhere you go.</h3>
<button class="button" type="button">Learn More</button>
</div>
</div>
<!-- PROMOTION -->
<h1>Everyone needs a little Karma.</h1>
<div class="promotion-logos">
<div class="promotion">
<img class="promo-img" src="img/icon-devices.svg" alt="device igm"/>
<h3>Internet for all devices</h3>
</div>
<div class="promotion">
<img class="promo-img" src="img/icon-coffee.svg" alt="productivity img"/>
<h3>Boost your productivity</h3>
</div>
<div class="promotion">
<img class="promo-img" src="img/icon-refill.svg" alt="pay img"/>
<h3>Pay as You Go</h3>
</div>
<!-- SOCIALS -->
</div>
<footer class="socials">
<p>Join us on</p>
<div class="social-icons">
<a href="#" class="fa fa-twitter"></a>
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-instagram"></a>
</div>
<p class="copy-right">© Karma Mobility. Ink</p>
</footer>
<!-- Add your HTML markup here -->
<!-- Remember: Use semantic HTML tags like <header>, <main>, <nav>, <footer>, <section> etc -->
<!-- All the images you need are in the 'img' folder -->
</body>
</html>