forked from CodeYourFuture/HTML-CSS-Module-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkarma-index.html
More file actions
44 lines (43 loc) · 1.61 KB
/
karma-index.html
File metadata and controls
44 lines (43 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Karma</title>
<link href='//fonts.googleapis.com/css?family=Roboto:400,500,300' rel='stylesheet' type='text/css'>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<!-- Add a link to your CSS file here (use the line above to guide you) -->
<link rel="stylesheet" href="css/style2.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<nav>
<logo class="image">
<img src="karma-logo.svg" alt="karma-logo" width="25%" height="20%">
</logo>
<navbar class="navbar">
<div class="list">
<a href="#"><strong>Meet Karma</strong></a>
<a href="#">How it Works</a>
<a href="#"> Store</a>
<a href="#">Blog</a>
<a href="#">Login</a>
<a href="#">Help</a>
</div>
</navbar>
</nav>
<main>
<section class="hero-img">
<!--<img src="first-background.jpg" alt="background-image" width="100%" height="30%">-->
<div class="container">
<img src="first-background.jpg" alt="background-image" width="100%" height="auto">
<h2>Introducing Karma</h2>
<p>Bring Wifi with you, everywhere you go.</p>
<button class="button">Learn More</button>
</div>
</section>
</main>
<footer>
</footer>
</body>