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
·111 lines (104 loc) · 2.93 KB
/
index.html
File metadata and controls
executable file
·111 lines (104 loc) · 2.93 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
<!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 rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="style.css" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<header>
<img class="logoclass" src="favicon.ico" alt="Logo" style="float: left" />
<nav class="Karmanav">
<ul class="ulnav">
<li>
<a href="index.html">Meet Karma</a>
</li>
<li>
<a href="#">How it works</a>
</li>
<li>
<a href="store.html">store</a>
</li>
<li>
<a href="#">Blog</a>
</li>
<li>
<a href="#">Help</a>
</li>
<li>
<a href="#">Login</a>
</li>
</ul>
</nav>
</header>
<section class="Bkgimg">
<article class="bkgtext">
<h1 class="h1class">Introducing Karma</h1>
<p class="pclass">Bring WiFi with you, everywhere you go.</p>
<button class="karmabtn">Learn More</button>
</article>
</section>
<section class="kmain">
<h2 class="h2class">Everyone needs a little Karma</h2>
<article class="brandDescription">
<div class="imgsclass1">
<img src="/img/icon-devices.svg" alt="Device" />
<h4>Internet for all Devices</h4>
</div>
<div class="imgsclass2">
<img src="/img/icon-coffee.svg" alt="Coffee" />
<h4>Boost your productivity</h4>
</div>
<div class="imgsclass3">
<img src="/img/icon-refill.svg" alt="Refill" />
<h4>Pay As You go</h4>
</div>
</article>
</section>
<section class="bodybottom">
<article class="bodybottomimg">
<img
class="imgxx"
src="/level-2/homepage-feature.png"
alt="Karma Store"
/>
</article>
<article class="bodybottomtxt">
<div class="bbtstyle">
<h1>
"When Ever I am, I Just don't worry about my connection anymore"
</h1>
</div>
<div>
<button
class="karmabtn2"
onclick="window.location.href='store.html';"
>
Get Karma Today
</button>
</div>
</article>
</section>
</body>
<footer>
<div class="allfooter">
<div class="karmafooter">
<h5>Join us On:</h5>
</div>
<div class="footericons">
<img class="twit" src="img/twitter-icon.svg" alt="Twitter" />
<img class="face" src="img/facebook-icon.svg" alt="Facebook" />
<img class="inst" src="img/instagram-icon.svg" alt="Instgram" />
</div>
<div class="ftr">
<h6>@ Karma Mobility Inc.</h6>
</div>
</div>
</footer>
</html>