-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (73 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Odin Landing Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<a href="/" id="logo">Header Logo</a>
<nav>
<a href="/" class="nav-link">header link 1</a>
<a href="/" class="nav-link">header link 2</a>
<a href="/" class="nav-link">header link 3</a>
</nav>
</header>
<div id="hero-section">
<div id="hero-text">
<h1>This website is awesome</h1>
<p>This website has some subtext that goes here under the main title. It's a smaller font and the colour has lower contrast</p>
<button>Sign up</button>
</div>
<div id="hero-image">
<img src="./images/hero-image.jpg" alt="clouds against a grey sky">
</div>
</div>
<div id="random-info">
<h2>Some random information.</h2>
<div id="images">
<div class="image-info">
<img src="./images/square-1.jpg" alt="pink flower with delicate petals against a stark white background">
<p>this is some subtext under an illustration or image</p>
</div>
<div class="image-info">
<img src="./images/square-2.jpg" alt="a lone bare tree in a snow covered environment">
<p>this is some subtext under an illustration or image</p>
</div>
<div class="image-info">
<img src="./images/square-3.jpg" alt="a dirt path leading to a large green bush">
<p>this is some subtext under an illustration or image</p>
</div>
<div class="image-info">
<img src="./images/square-4.jpg" alt="a short tree growing from the sand on a beach">
<p>this is some subtext under an illustration or image</p>
</div>
</div>
</div>
<div id="testimonial">
<blockquote>
<p>
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.
</p>
</blockquote>
<cite>
<p>-Thor, God of Thunder</p>
</cite>
</div>
<div id="call-to-action">
<div id="cta-container">
<div id="cta-text">
<h2>Call to action! It's time!</h2>
<p>Sign up for our product by clicking the button right there!</p>
</div>
<button>Sign up</button>
</div>
</div>
<footer>
Copyright © The Odin Project 2024
</footer>
</body>
</html>