-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (54 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Landing Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="section-1">
<div class="header">
<div class="logo">Header Logo</div>
<div class="links">
<ul>
<li>header link one</li>
<li>header link two</li>
<li>header link three</li>
</ul>
</div>
</div>
<div class="content">
<div class="signup">
<div class="title">This website is awesome</div>
<p>This website has some subtext that goes here under the main title. It's a smaller font and the color is lower contrast.</p>
<button>Sign up</button>
</div>
<img src="images/header.jpg">
</div>
</div>
<div class="section-2">
<div class="title">Some random information</div>
<div class="items">
<div class="item-1"><img src="images/one.jpg">this is some subtext under an illustration or image</div>
<div class="item-2"><img src="images/two.jpg">this is some subtext under an illustration or image</div>
<div class="item-3"><img src="images/three.jpg">this is some subtext under an illustration or image</div>
<div class="item-4"><img src="images/four.jpg">this is some subtext under an illustration or image</div>
</div>
</div>
<div class="section-3">
<div class="quote">This is an inspiring quote, or a testimonial from a customer. Maybe it's just filling up space, or maybe people will actually read it. Who knows? All I know is that it looks nice. <span class="name">-Thor, God of Thunder</span></div>
</div>
<div class="section-4">
<div class="action">
<div class="call">
<span style="font-weight: bold; font-size: 16px;">Call to action! It's time!</span><br />
Sign up for our product by clicking that button right over there!
</div>
<div class="signup-action"><button>Sign up</button></div>
</div>
</div>
<div class="section-5">
<p>Copyright © The Odin Project 2021</p>
</div>
</body>
</html>