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
·81 lines (63 loc) · 1.99 KB
/
index.html
File metadata and controls
executable file
·81 lines (63 loc) · 1.99 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
<!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>
<!-- 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 -->
<body>
<header class="head">
<img id="logohead" src="img/karma-logo.svg">
</header>
<nav class="head">
<ul class="menu">
<li>Meet Karma</li>
<li>How it Works</li>
<li>Store</li>
<li>Blog</li>
<li>Help</li>
<li>Login</li>
</ul>
</nav>
<!-- <div id="prueba"> que sea absoluto , quede encima de la imagen con el tamaño de la imagen siempre **/-->
<section class="banner">
<img src="img/first-background.jpg">
<div id="prueba">
<div class="textbanner1">Introducing Karma</div>
<div class="textbanner2">Bring WiFi with you, everywhere you go.</div>
<div class="buttonbanner">Learn More</div>
</div>
</section>
<main>
<section id="benefits">
<h1>Everyone needs a little Karma</h1>
<div id="benefit1">
<img class="img2" src="img/icon-devices.svg">
<p class="p2">Internet for all devices</p>
</div>
<div id="benefit2">
<img class="img2" src="img/icon-coffee.svg">
<p class="p2">Boost your productivity</p>
</div>
<div id="benefit3">
<img class="img2" src="img/icon-refill.svg">
<p class="p2">Pay as You Go</p>
</div>
</section>
</main>
<footer>
<h2>Join us on</h2><br><br>
<img class="img3" src="img/twitter-icon.svg">
<img class="img3" src="img/facebook-icon.svg">
<img class="img3" src="img/instagram-icon.svg">
<p id="copyright"> © Karma Mobility Inc </p>
</footer>
</body>
</html>