-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (78 loc) · 3.27 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
<!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>Landing-Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="header">
<p>Header Logo</p>
<ul>
<a href="pages/page1.html">header link one</a>
<a href="pages/page2.html">header link two</a>
<a href="pages/page3.html">header link three</a>
</ul>
</div>
<div class="container-1">
<div class="left-content">
<p id="hero-main-text">This website is awesome</p>
<p>This website has some subtext that goes under the main title. It's smaller font
and the color is lower contrast.
</p>
<button type="button">Sign up</button>
</div>
<img src="https://helios-i.mashable.com/imagery/articles/04i1KeWXNed98aQakEZjeOs/hero-image.fill.size_1200x900.v1623362896.jpg" alt="pepe_frog" height = "250px" width="500px">
</div>
</div>
<div class="container-2">
<p>Some random information.</p>
<div class="images">
<div class="image-subtitle">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/8/8d/Frog_on_palm_frond.jpg/1200px-Frog_on_palm_frond.jpg" alt="frog_on_palm_frond">
<p>Text that wraps. Lets write more text to make sure it wraps</p>
</div>
<div class="image-subtitle">
<img src="https://cdn.theatlantic.com/media/mt/science/cat_caviar.jpg" alt="cat_caviar">
<p>Text that wraps. Lets write more text to make sure it wraps</p>
</div>
<div class="image-subtitle">
<img src="https://images.unsplash.com/photo-1587402092301-725e37c70fd8?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8cHVwcHklMjBkb2d8ZW58MHx8MHx8&w=1000&q=80" alt="puppy">
<p>Text that wraps. Lets write more text to make sure it wraps</p>
</div>
<div class="image-subtitle">
<img src="https://worldanimalfoundation.org/wp-content/uploads/2022/12/Red-Tail-Fox-1.jpg" alt="fox">
<p>Text that wraps. Lets write more text to make sure it wraps</p>
</div>
</div>
</div>
<div class="container-3">
<div class="quote-text">
<p>This is an inspiring quote, or a testimonial from a customer. Maybe it's filling up space or maybe
people will actually read it. Who knows? All I know is that it looks nice.
</p>
</div>
<div class="quote-author">
<p>- Thor, God of Thunder</p>
</div>
</div>
<div class="container-4">
<div class="outer-box">
<div class="box-content">
<p>
<span style="font-weight:bold">Call to action! It's time!</span><br>
Sign up for our product by clicking that button over there!
</p>
<button>
Sign up!
</button>
</div>
</div>
</div>
<div class="footer">
<p>Copyright © The Odin Project 2023</p>
</div>
</body>
</html>