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
·120 lines (116 loc) · 3.68 KB
/
index.html
File metadata and controls
executable file
·120 lines (116 loc) · 3.68 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
116
117
118
119
120
<!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 Clone</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">
<nav class="header_nav">
<div class="logo_div">
<img class="logo" src="img/karma-logo.svg" alt="logo" />
</div>
<div class="list_div">
<ul class="header_list">
<li class="list_item">
<a class="nav_link" href="#meet_karma">Meet Karma</a>
</li>
<li class="list_item">
<a class="nav_link" href="#how_it_works">How it Works</a>
</li>
<li class="list_item">
<a class="nav_link" href="./stores.html">Stores</a>
</li>
<li class="list_item">
<a class="nav_link" href="#blog">Blog</a>
</li>
<li class="list_item">
<a class="nav_link" href="#help">Help</a>
</li>
<li class="list_item">
<a class="nav_link" href="#log_in">Log in</a>
</li>
</ul>
</div>
</nav>
</header>
<main class="main">
<article class="main_slide">
<section class="main_slide_overlay">
<h1>Introducing Karma</h1>
<h2>Bring WiFi with you, everywhere you go.</h2>
<button class="learn_more_btn button">Learn More</button>
</section>
</article>
<article class="features">
<section class="features_header">
<h1>Everyone needs a little karma.</h1>
</section>
<section class="features_icons_container">
<div class="features_icon">
<img
class="features_icon_logo"
src="img/icon-devices.svg"
alt="orange outline image of devices"
/>
<h3>Internet for all devices</h3>
</div>
<div class="features_icon">
<img
class="features_icon_logo"
src="img/icon-coffee.svg"
alt=" orange outline image of coffee"
/>
<h3>Boost Your Productivity</h3>
</div>
<div class="features_icon">
<img
class="features_icon_logo"
src="img/icon-refill.svg"
alt="orange outline image of refill"
/>
<h3>Pay as You Go</h3>
</div>
</section>
</article>
</main>
<hr />
<footer class="footer">
<div class="footer_header">
<h3>Join us on</h3>
</div>
<div class="social_icons_container">
<div class="social_icons">
<a class="social_icons_page" href="https://twitter.com">
<img src="./img/twitter-icon.svg" alt="twitter icon" />
</a>
</div>
<div class="social_icons">
<a class="social_icons_page" href="https://facebook.com"
><img src="./img/facebook-icon.svg" alt="facebook icon"
/></a>
</div>
<div class="social_icons">
<a class="social_icons_page" href="https://instagram.com">
<img src="./img/instagram-icon.svg" alt="instagram icon" />
</a>
</div>
</div>
<div class="copy_right_text">
<h4>©Karma Mobility.Inc</h4>
</div>
</footer>
</body>
</html>