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
·76 lines (62 loc) · 2.59 KB
/
index.html
File metadata and controls
executable file
·76 lines (62 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
73
74
75
76
<!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>
<h1></h1>
<h2></h2>
<h3></h3>
<h4></h4>
<section id="header">
<!-- Add your HTML markup here -->
<img src="img\karma-logo.svg" alt="Favicon Logo" style="width:75px;height:75px;">
<div id="nav-bar">
<a class="nav-link" href="#section2" id="how-work">How it Works</a>
<a class="nav-link" href="#section1">Meet Karma</a>
<a class="nav-link" href="#section3">Store</a>
<a class="nav-link" href="#section4">Blog</a>
<a class="nav-link" href="#section5">Help</a>
<a class="nav-link" href="#section6">Login</a>
</div>
</section>
<section id="main">
<div class="container">
<img src="C:\Users\User\Documents\GitHub\GitHomeworkTest\HTML-CSS-Coursework-Week2\img\first-background.jpg" alt="Main image"style="width:1800px;height:600px;">
<div class="Image-title"><h1>Introducing Karma</h1></div>
<div class="Image-title2"><h3>Bring WIFI with you everywhere you go.</h3></div>
<button class="btn">Learn More</button>
</div>
</section>
<div id="section0">
<h2>Everyone needs a little karma</h2>
</div>
<div id="section1">
<div class="devices">
<img src="C:\Users\User\Documents\GitHub\GitHomeworkTest\HTML-CSS-Coursework-Week2\img\icon-devices.svg" alt="Devices" style="width:170px;height:170px">
<p>Internet for all devices</p>
</div>
<div class="productivity">
<img src="C:\Users\User\Documents\GitHub\GitHomeworkTest\HTML-CSS-Coursework-Week2\img\icon-coffee.svg" alt="coffee" style="width:170px;height:170px">
<p>Boost your Productivity</p>
</div>
<div class="payasyougo">
<img src="C:\Users\User\Documents\GitHub\GitHomeworkTest\HTML-CSS-Coursework-Week2\img\icon-refill.svg" alt="refill" style="width:170px;height:170px">
<p>Boost your Productivity</p>
</div>
</div>
<div class="joinus">Join us on</div>
<section id="section2">
<img src="img\twitter-icon.svg" alt="Twitter icon" style="width:30px;height:30px">
<img src="img\facebook-icon.svg" alt="Twitter icon" style="width:30px;height:30px">
<img src="img\instagram-icon.svg" alt="Twitter icon" style="width:30px;height:30px">
</section>
<div class="footer">@Karma Mobility inc</div>
</body>
</html>