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
·64 lines (51 loc) · 2.29 KB
/
index.html
File metadata and controls
executable file
·64 lines (51 loc) · 2.29 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
<!DOCTYPE html>
<html lang="en">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Karma Project</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="body">
<header class="header">
<img src="img/karma-logo.svg" alt="Karma Logo" class="logo" />
<nav class="header-nav">
<a href="" class="header-nav-link">Meet Karma</a>
<a href="" class="header-nav-link">How It works</a>
<a href="" class="header-nav-link">Store</a>
<a href="" class="header-nav-link">Blog</a>
<a href="" class="header-nav-link">Help</a>
<a href="" class="header-nav-link">Login</a>
</nav>
</header>
<main class="main">
<section class="first-child">
<img src="img/first-background.jpg" alt="introducing karma bring wi-fi with you everywhere you go" class="first-background" />
<h1 class="section1-title">Introducing Karma</h1>
<h2 class="section1-text">Bring WiFi with you, everywhere you go.</h2>
</section>
<section class="second-child">
<h1 class="karma-title">Everyone needs a little Karma.</h1>
<div class="karma-title">
<img src="img/icon-devices.svg" alt="An image of a phone, a tablet and a computer desktop" />
<h2 class="karma-heading2">Internet for all devices</h2>
<img src="img/icon-coffee.svg" alt="An Image of a Cup of Coffee" />
<h2 class="karma-heading3">Boost your productivity</h2>
<img src="img/icon-refill.svg" alt="An Image of a Petrol Pump" />
<h2 class="karma-heading4">Pay as You Go</h2>
</div>
</section>
</main>
<footer class="footer">
<p class="footer-text">Join us on</p>
<div class="social-media-buttons">
<a href="#"><img src="img/twitter-icon.svg" alt="twitter icon" class="footer-link" /></a>
<a href="#"><img src="img/facebook-icon.svg" alt="facebook icon" class="footer-link" /></a>
<a href="#"><img src="img/instagram-icon.svg" alt="instagram icon" class="footer-link" /></a>
</div>
<span class="span"> © Karma Mobility, Inc.</span>
</footer>
</body>
</html>