-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (91 loc) · 3.56 KB
/
index.html
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
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/landing_page/style.css">
<title>Landing page</title>
</head>
<body>
<body>
<header id="section-header">
<div class="container section header">
<h1 class="header-logo-text">Header Logo</h1>
<nav>
<ul>
<li><a class="header-link" href="">Header Link One</a></li>
<li><a class="header-link" href="">Header Link Two</a></li>
<li><a class="header-link" href="">Header Link Three</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="section-hero">
<div class="container section hero">
<div class="hero-text">
<h1>This website is awesome</h1>
<p class="hero-secondary">
Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nemo
blanditiis molestias adipisci doloremque ipsam ratione laudantium,
tempore unde repellat sint, aut ullam repellendus sapiente facilis
ex necessitatibus dolore repudiandae deleniti.
</p>
<button class="hero-btn">Sign up</button>
</div>
<img width="400px" src="img/hero.jpg" alt="" />
</div>
</section>
<section id="section-info-boxes">
<div class="container section info-boxes">
<h2>Some random stuff</h2>
<div class="boxes">
<div class="box">
<img class="box-img" src="img/arc.jpg" alt="" />
<p>this is some subtext under an illustration or image</p>
</div>
<div class="box">
<img class="box-img" src="img/arc.jpg" alt="" />
<p>this is some subtext under an illustration or image</p>
</div>
<div class="box">
<img class="box-img" src="img/arc.jpg" alt="" />
<p>this is some subtext under an illustration or image</p>
</div>
<div class="box">
<img class="box-img" src="img/arc.jpg" alt="" />
<p>this is some subtext under an illustration or image</p>
</div>
</div>
</div>
</section>
<section id="section-quote">
<div class="container section quote">
<p class="quotation">
This is an inspiring quote, or a testimonial from a customer. Maybe
it's just filling space or maybe people will actually read it. Who
knows? All I know is that it looks nice.
</p>
<p class="author">-Thor, God of Thunder</p>
</div>
</section>
<section id="section-cta">
<div class="section cta">
<div class="cta-box">
<div class="cta-text">
<h3>Call to Action! It's Time!</h3>
<p>Sign up for our product by clicking that button over there!</p>
</div>
<button class="btn-sign">Sign Up!</button>
</div>
</div>
</section>
</main>
<footer id="section-footer">
<div class="section footer">
<h3>Copyright © The Odin Project</h3>
</div>
</footer>
</body>
</body>
</html>