-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (85 loc) · 3.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Landing Page</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!--Build of Navigation Bar-->
<header class="Dark_background">
<nav>
<div class="Logo">Header Logo</div>
<div class="nav_bar">
<ul class ="links">
<li><a href="url">Header Link one</a></li>
<li><a href="url">Header link two</a></li>
<li id="last_link"><a href="url">Header link three</a></li>
</ul>
</div>
</nav>
<!--Build of First Section with in the Navigation bar-->
<div class="first_section_div">
<div class="first_section_main">
<h1 class="first_section_header">This website is Awesome</h1>
<p class="first_section_subtext">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 class="sign_up_btn">Sign up</button>
</div>
<div class="first_section_image">
<img src="images/placeholder.webp"/>
</div>
</div>
</header>
<!--Build of Second section-->
<div class="second_section_div">
<div class="second_section_header"><h1>Some Random Information</h1></div>
<div class="Figures">
<div class="second_section_figures">
<img src="images/placeholder.webp"/>
<p>This is some subtext under an illustration or image</p>
</div>
<div class="second_section_figures">
<img src="images/placeholder.webp"/>
<p>This is some subtext under an illustration or image</p>
</div>
<div class="second_section_figures">
<img src="images/placeholder.webp"/>
<p>This is some subtext under an illustration or image</p>
</div>
<div class="second_section_figures">
<img src="images/placeholder.webp"/>
<p>This is some subtext under an illustration or image</p>
</div>
</div>
</div>
<!--Build of Thrid Section-->
<div class="thrid_section_div quote-div">
<div>
<p class="quote-text">This is an inspiring quote, or a testimonial from a customer. Mayber it's just filling up space,
or maybe people will actually read it. Who knows? All I know is that is looks nice.
</p>
<span>-Thor, God of Thunder</span>
</div>
</div>
<!--Build of Fourth Section-->
<div class="fourth_section_div">
<div>
<div class="sign_up_div">
<strong>Call to Action! Its time!</strong>
<p>Signup for our product by clicking that button</p>
</div>
<div>
<button class="sign_up_btn">Sign up</button>
</div>
</div>
</div>
<!--Build of Last Section-->
<footer>
<span>Copyright © The Odin Project 2021</span>
</footer>
</body>
</html>