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
·72 lines (67 loc) · 2.59 KB
/
Copy pathindex.html
File metadata and controls
executable file
·72 lines (67 loc) · 2.59 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
<!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>
<h1>Karma-Clone</h1>
<p>
The aim of this exercise is to create a page that looks like just this
one
</p>
<nav class="nav">
<div class="logo">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 144 216">
<path
fill="#F15B2A"
d="M126.1 212.9c4.1 4.1 10.7 4.1 14.8 0 4.1-4.1 4.1-10.7 0-14.8l-28.6-28.6 18.1-18.1c8.4-8.4 13.6-20 13.6-32.9C144 92.8 123.2 72 97.5 72S51 92.8 51 118.5c0 12.8 5.2 24.5 13.6 32.9l18.1 18.1-18.1 18.1c-4.6 4.6-11 7.5-18.1 7.5-14.1 0-25.6-11.5-25.6-25.6v-159C20.9 4.7 16.2 0 10.5 0 4.7 0 0 4.7 0 10.5v159C0 195.2 20.8 216 46.5 216c12.8 0 24.5-5.2 32.9-13.6l18.1-18.1 28.6 28.6zm-46.7-76.3c-4.6-4.6-7.5-11-7.5-18.1 0-14.1 11.5-25.6 25.6-25.6 14.1 0 25.6 11.5 25.6 25.6 0 7.1-2.9 13.5-7.5 18.1l-18.1 18.1-18.1-18.1z"
/>
</svg>
</div>
<ul class="list">
<li class="item"><a href="Meet karma">Meet Karma</a></li>
<li class="item"><a href="How it Works">How it Works</a></li>
<li class="item"><a href="Store">Store</a></li>
<li class="item"><a href="Blog">Blog</a></li>
<li class="item"><a href="Help">Help</a></li>
<li class="item"><a href="Login">Login</a></li>
</ul>
</nav>
</header>
<main>
<img src="./img/first-background.jpg" alt="" width="1100gitpx"/>
</main>
<div>
<h2 class="h2">Everyone needs a little Karma</h2>
</div>
<div>
<img src="./img/icon-devices.svg" alt="" width="200px">
<img src="./img/icon-coffee.svg" alt="" width="200px">
<img src="./img/icon-refill.svg" alt="" width="200px">
</div>
<div>
<ul class="list2">
<li>Internet for all devices</li>
<li>Boost your productivity</li>
<li>Pay as You Go</li>
</ul>
</div>
<!-- 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>
</html>