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
·115 lines (99 loc) · 4.16 KB
/
Copy pathindex.html
File metadata and controls
executable file
·115 lines (99 loc) · 4.16 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="about Karma wifi provider for everyone everywhere">
<title>Karma</title>
<link href='https://fonts.googleapis.com/css?family=Roboto:400,500,300' rel='stylesheet' type='text/css' &display="swap">
<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>
<!-- 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 -->
<header class="header" aria-label="website header">
<div class="logo">
<img src="img/karma-logo.svg" alt="logo-icon" >
</div>
<nav class="nav-bar" role="navigation" aria-label="navigation bar of PAGE">
<ul>
<li >
<a href="#" id="karma" target="_blank"> Meet Karma </a>
</li>
<li>
<a href="#" target="_blank"> How it Works </a>
</li>
<li>
<a href="level-2/store.html" target="_blank"> Store </a>
</li>
<li>
<a href="#" target="_blank"> Blog </a>
</li>
<li>
<a href="#" target="_blank"> Help </a>
</li>
<li>
<a href="#" target="_blank"> Login</a>
</li>
</ul>
</nav>
</header>
<main class="main" role="main" aria-label="main SECTION OF PAGE">
<section class="section-1" role="region" aria-label="introduce Karma">
<h1>Introducing karma</h1>
<p>Bring Wifi with you, everywhere you go. </p>
<a href="#">
Learn More
</a>
</section>
<section class="section-2" role="region" aria-label="introduce Karma products">
<h2>
Everyone needs a little Karma.
</h2>
<div class="section-2-div">
<div>
<img src="img/icon-devices.svg" alt=" image of icon-devices ">
<p>
Internet for all devices.
</p>
</div>
<div>
<img src="img/icon-coffee.svg" alt="image of icon-coffee">
<p>
Boost your productivity.
</p>
</div>
<div>
<img src="img/icon-refill.svg" alt="image of icon-refill">
<p>
Pay as you go.
</p>
</div>
</div>
</section>
<section class="section-3">
<img src="level-2/homepage-feature.webp" alt="lady is enjoying using Krama wifi device">
<div id="text-container-section-3">
<p>
Whereever I am , I just don't <br> worrey about my connection<br> anymore.
</p>
<button id="get-karma-button" onclick="window.location.href = 'level-2/store.html';"></button>>Get Karma today</button>
</div>
</section>
</main>
<footer class="footer" role="contentinfo" aria-label="footer of the webpage">
<p>Join us on: </p>
<div>
<a href="#" target="_blank" aria-label="redirecting to facebook page of karma Inc"><img src="img/facebook-icon.svg" alt="facebook-icon link"></a>
<a href="#" target="_blank" aria-label="redirecting to instagram page of karma Inc"><img src="img/instagram-icon.svg" alt="instagram-icon link"></a>
<a href="#" target="_blank" aria-label="redirecting to twitter page of karma Inc"><img src="img/twitter-icon.svg" alt="twitter-iconlink"></a>
</div>
<p>
© Karma Mobility Inc
</p>
</footer>
</body>
</html>