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
·94 lines (87 loc) · 3.1 KB
/
index.html
File metadata and controls
executable file
·94 lines (87 loc) · 3.1 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
<!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" />
</head>
<body>
<header class="header">
<img
src="/img/karma-logo.svg"
id="logo-image-id"
class="logo-image"
alt="image_of_logo"
/>
<nav class="navigation">
<a href="#" class="nav-links">Meet Karma</a>
<a href="#" class="nav-links">How it Works</a>
<a href="/store.html" class="nav-links">Store</a>
<a href="#" class="nav-links">Blog</a>
<a href="#" class="nav-links">Help</a>
<a href="#" class="nav-links">Logic</a>
</nav>
</header>
<main class="main-section">
<section class="backgroundImage-and-title">
<div class="intro">
<h1 class="title">Introducing Karma</h1>
<p class="intro-paragraph">Bring WiFi with you, everywhere you go</p>
<button class="learn-more-btn btn">Learn more</button>
</div>
</section>
<section class="product-section">
<h2>Everyone needs a little Karma</h2>
<div class="sub-product-container">
<div class="individual-product-container">
<img src="/img/icon-devices.svg" class="product-image" alt="image_of_devices"/>
<p>Internet for all devices</p>
</div>
<div class="individual-product-container">
<img src="/img/icon-coffee.svg" class="product-image" alt="image_of_coffee_cup"/>
<p>Boost your productivity</p>
</div>
<div class="individual-product-container">
<img src="/img/icon-refill.svg" class="product-image" alt="image_of_fuel"/>
<p>Pay as You Go</p>
</div>
</div>
</section>
<section class="connection_coverage">
<img class="image_for_homepage_feature" src="/level-2/homepage-feature.png">
<div class="go_karma_today_section">
<p>"Where I am, I just don't worry about my connection anymore"</p>
<button class="Go_karma_btn btn"><a class="Go_karma_btn" href="/store.html">Get Karma today</a></button>
</div>
</section>
</main>
<footer class="footer">
<p class="footer-paragraph">Join us on</p>
<div class="footer-socialMedia-image">
<img
src="/img/twitter-icon.svg"
class="socialMedia-image"
alt="logo_of_twitter"
/>
<img src="/img/facebook-icon.svg" class="socialMedia-image" alt="logo_of_facebook"/>
<img
src="/img/instagram-icon.svg"
class="socialMedia-image"
alt="logo_of_instagram"
/>
</div>
<p>©️Karma Mobility.Inc</p>
</footer>
</body>
</html>