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
·83 lines (83 loc) · 2.59 KB
/
index.html
File metadata and controls
executable file
·83 lines (83 loc) · 2.59 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
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<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" />
</head>
<body>
<a class="logo" href="#">
<img src="../img/karma-logo.svg" alt="logo"/>
</a>
<nav class="navbar">
<ul>
<li class="nav-item">
<a class="nav-link" id='nav-link1'>Meet karma</a>
</li>
<li class="nav-item">
<a class="nav-link">How it works</a>
</li>
<li class="nav-item">
<a class="nav-link">Store</a>
</li>
<li class="nav-item">
<a class="nav-link">Help</a>
</li>
<li class="nav-item">
<a class="nav-link">Login</a>
</li>
</ul>
<a class="nav-img" href="#">
<img src="../img/menu-hamburger.svg" alt="hamburger"/>
</a>
</nav>
<div class="background">
<br><br><br><br><br><br><br><br><br><br>
<h1>introducing karma</h1>
<br><br>
<p>Bring WI-FI with you everywhere you go</p>
<br><br>
<div class='button'><button>Learn more</button></div>
<!-- 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 -->
</div>
<br>
<p class='p'>Everyone needs a little karma</p>
<div class="all-icon">
<div class="icon">
<img a src="../img/icon-devices.svg" alt="icon-devices" /></a>
<p class="p1">Internet for all devices</p>
</div>
<div class="icon">
<img a src="../img/icon-coffee.svg" alt="icon-coffee" />
<p class="p1">Boost your productivity</p>
</div>
<div class="icon">
<img a src="../img/icon-refill.svg" alt="icon-refill" />
<p class="p1">Pay as you go</p>
</div>
</div>
</body>
<footer>
<h6>Join us on</h6>
<div class="social">
<div class="icon"><img src="../img/twitter-icon.svg" alt="icon-devices" ></div>
<div class="icon"><img src="../img/facebook-icon.svg" alt="icon-devices" ></div>
<div class="icon"><img src="../img/instagram-icon.svg" alt="icon-devices" ></div>
</div>
<h5>© Karma Mobility, Inc</h5>
<br><br>
</footer>
</html>