-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (62 loc) · 2.77 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
<!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="styles.css">
<title>Landing Page</title>
</head>
<body>
<header class="header">
<div class="logo">Header Logo</div>
<ul class="links">
<li><a href="#">header link one</a></li>
<li><a href="#">header link two</a></li>
<li><a href="#">header link three</a></li>
</ul>
</header>
<div class="hero">
<div class="left">
<div class="title">This Website is About Owls</div>
<div class="text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Mollitia consequuntur voluptate molestiae rerum quia, voluptatem odio quidem recusandae libero quisquam beatae et, illum, commodi aut necessitatibus veritatis ad animi inventore?</div>
<button>Sign up</button>
</div>
<div class="right"><img src="../Landing-Page/images/owl.jpeg" alt="A picture of an owl"></div>
</div>
<main class="main">
<h1>Some random information.</h1>
<div class="rowboxes">
<div class="item">
<img src="../Landing-Page/images/owl1.jpg" alt="barberry">
<div class="texts">This is an owl. We love this one.</div>
</div>
<div class="item">
<img src="../Landing-Page/images/owl3.jpg" alt="saffron">
<div class="texts">This is another type of owls. Isn't it nice?</div>
</div>
<div class="item">
<img src="../Landing-Page/images/owl4.jpg" alt="pepper">
<div class="texts">We have so many owls. Yay owls.</div>
</div>
<div class="item">
<img src="../Landing-Page/images/owl2.jpg" alt="chilli">
<div class="texts">I'm running out of things to say about owls.</div>
</div>
</div>
<div class="quote">
<p>There was a wise old owl who sat in a tree, the less he spoke the more he heard, the more he heard the less he spoke.</p>
<div class="qfoot">-Guy who knows about owls</div>
</div>
<div class="action">
<div class="contain">
<div class="actionleft">
<div class="leftt">Call to action it's time!</div>
<div class="text">Sign up for our product by clicking that product right over there!</div>
</div>
<button class="actionright">Sign up</button>
</div>
</div>
</main>
<footer class="footer"> Copyright © The Owl Project</footer>
</body>
</html>