-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (74 loc) · 2.81 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="first-section">
<div class="nav-bar">
<div class="left-nav-bar">
<p id="header-logo">Header Logo</p>
</div>
<div class="right-nav-bar">
<ul>
<li class="header-links">header link one</li>
<li class="header-links">header link two</li>
<li class="header-links">header link three</li>
</ul>
</div>
</div>
<div class="first-content">
<div class="left-content">
<h1 id="hero-text">This website is <br> awesome</h1>
<p id="mini-text">This website has some subtext that goes here under the <br> main title. It's a smaller font and the color is lower <br> contrast</p>
<button type="button" id="first-sign-up">Sign up</button>
</div>
<div class="right-content">
<img src="https://img.freepik.com/free-photo/tropical-beach_74190-188.jpg" alt="Nice beach">
</div>
</div>
</div>
<div class="second-section">
<h2>Some random information.</h1>
<div class="row-of-blue-divs">
<div class="box-blue-msg">
<div class="box-blue"></div>
<p class="p-second">this is some subtext <br> under an illustration <br> or image</p>
</div>
<div class="box-blue-msg">
<div class="box-blue"></div>
<p class="p-second">this is some subtext <br> under an illustration <br> or image</p>
</div>
<div class="box-blue-msg">
<div class="box-blue"></div>
<p class="p-second">this is some subtext <br> under an illustration <br> or image</p>
</div>
<div class="box-blue-msg">
<div class="box-blue"></div>
<p class="p-second">this is some subtext <br> under an illustration <br> or image</p>
</div>
</div>
</div>
<div class="third-section">
<h3>This is an inspiring quote, or a testimonial from a <br> customer. Maybe it's just filling up space, or maybe <br> people will actually read it. Who knows? All i know <br> is that it looks nice</h3>
<p id="author">-Thor, God of Thunder</p>
</div>
<div class="fourth-section">
<div class="box">
<div class="left-part">
<h4>Call to action! It's time!</h4>
<p id="third-p">Sign up for our product by clicking that button right over there!</p>
</div>
<div class="right-part">
<button type="button" class="button">Sign up</button>
</div>
</div>
</div>
<div class="footer">
<p class="footer-text">Copyright © The Odin Project 2023</p>
</div>
</body>
</html>