-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
140 lines (71 loc) · 2.7 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<html>
<head>
<title>Landing Page Demo</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="pageContainer">
<header id="heroHeader">
<h1 id="pageLogo">Your Logo Here</h1>
<nav id="nav">
<a href="">Header Link 1</a>
<a href="">Header Link 2</a>
<a href="">Header Link 3</a>
</nav>
</header>
<section id="heroSection">
<main id="main">
<h1>This website is <br> awesome</h1>
<p id="heroText">ipsom lorum dorum horum thisum isum somem bullshitem to fillupem the area <br>
ipsom lorum dorum horum thisum isum somem bullshitem <br>
maybeum some moreum
</p>
<button id="heroSignUpButton">Sign Up</button>
</main>
<figure>
<img src="https://pbs.twimg.com/media/DoQGxT6W0AAPred?format=png&name=small" width="500px">
</figure>
</section>
<div id="infoBoxes">
<div id="headerText">
<h2>Some Random Information.</h2>
</div>
<div id="figureContainer">
<figure >
<img class="infoImg" height="200px">
<figcaption>The First Image</figcaption>
</figure>
<figure >
<img class="infoImg" height="200px">
<figcaption>The Second Image</figcaption>
</figure>
<figure >
<img class="infoImg" height="200px">
<figcaption>The Third Image</figcaption>
</figure>
<figure >
<img class="infoImg" height="200px">
<figcaption>The Forth Image</figcaption>
</figure>
</div>
</div>
<div id="quotes">
<p id="quoteText">"This inspiring quote may oneday change your life.... <br>
Or maybe it wont', who knows." <br> - Some guy 2022
</p>
</div>
<div id="callToAction">
<div id="ctaBanner">
<div id="ctaText">
<h2>Call to actions! It's time!</h2>
<p>Sign up for our product by clicking that button right over there!</p>
</div>
<button id="ctaSignUpButton">Sign Up</button>
</div>
</div>
<footer id="footer">
<p>Copyright © The Odin Project 2022</p>
</footer>
</div>
</body>
</html>