-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (71 loc) · 3.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<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>Landing Page</title>
</head>
<body>
<div class="header">
<div class="links-n-logo">
<img class="logo" src="photos/lotus.png" alt="stylized purpulish, orangeish beautiful lotus">
<div class="links">
<a href="https://www.pexels.com/photo/gold-1-freestanding-decor-2249528/">header link one</a>
<a href="https://unsplash.com/photos/PFzy4N0_R3M">header link two</a>
<a href="https://pixabay.com/photos/teddy-bear-teddy-bear-2855982/">header link three</a>
</div>
</div>
<div class="hero">
<div class="left">
<div class="heromain">This website is awesome</div>
<div class="herosmall">This website has some subtext that goes here under the main title. It`s a smaller font and the color is lower contrast</div>
<button>Sign up</button>
</div>
<img class="placeholder" src="photos/paper.jpg" alt="four roles of white toilet paper rolling from right to left in a dark background">
</div>
</div>
<div class="body">
<div class="container1">
<p id="one">Some random information.</p>
<div class="boxxs">
<div class="box11">
<div class="box1"><img src="photos/wave.png" alt="trippy colored magnetic wave"> </div>
<p id="two">this is some subtext under an illustration or image</p>
</div>
<div class="box22">
<div class="box2"><img src="photos/Target.png" alt="red target crosshair in white background"> </div>
<p id="two">this is some subtext under an illustration or image</p>
</div>
<div class="box33">
<div class="box3"><img src="photos/Meteor.jpg" alt="meteorites heading to Earth like planet"> </div>
<p id="two">this is some subtext under an illustration or image</p>
</div>
<div class="box44">
<div class="box4"><img src="photos/kaboom.png" alt="large yellow orange bang with kaboom written over it"> </div>
<p id="two">this is some subtext under an illustration or image</p>
</div>
</div>
</div>
<div class="container2">
<a id="three">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.</a>
<a id="four">-Thor, God of Thunder</a>
</div>
<div class="container3">
<div class="blu">
<div class="call">
<a id="five">Call to action! It`s time!</a>
<a id="six">Sign up for our product by clicking that button right over there!</a>
</div>
<div class="butt">
<button class="bottom">Sign up</button>
</div>
</div>
</div>
</div>
<div class="footer">
<a>Copyright © The Odin Project 2021 </a>
</div>
</body>
</html>