-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (59 loc) · 2.37 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
<!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">
<link rel="stylesheet" href="style.css">
<title>Veradux's Odin Landing Page Project</title>
</head>
<body>
<div class="header">
<div class="title">Header Logo</div>
<div class="links">
<a>header link one</a>
<a>header link two</a>
<a>header link three</a>
</div>
</div>
<div class="hero">
<div class="hero-container">
<h1>This website is awesome</h1>
<p>This website has some subtext that goes here under the main title. It's smaller font and the color is lower contrast</p>
<button>Sign Up</button>
</div>
<img src="https://images.pexels.com/photos/9365604/pexels-photo-9365604.jpeg?cs=srgb&dl=pexels-matteo-badini-9365604.jpg&fm=jpg" alt="placeholder">
</div>
<h2 style="font-size: 36px;font-weight: 900;color:#1F2937;text-align: center;">Some random information.</h2>
<div class="body-container">
<div class="info-container">
<img src="./images/img1.jpg">
<p>this is some subtext under an illustration or image</p>
</div>
<div class="info-container">
<img src="./images/img2.jpg">
<p>this is some subtext under an illustration or image</p>
</div>
<div class="info-container">
<img src="./images/img3.jpeg">
<p>this is some subtext under an illustration or image</p>
</div>
<div class="info-container">
<img src="./images/img4.jpg"">
<p>this is some subtext under an illustration or image</p>
</div>
</div>
<div class="testimonial">
<p>This is an inspiring quote, or a testimonial from a customer. Maybe its just filling up space, or maybe people will actually read it. Who knows? All I know is that it looks nice.</p>
<h3>-Thor, God of Thunder</h3>
</div>
<div class="call">
<div class="call-text">
<h2>Call to action! It's time!</h2>
<p>Sign up for our product by clicking that button right over there!</p>
</div>
<button>Sign Up</button>
</div>
<div class="footer">Copyright © Frog & Die 2022</div>
</body>
</html>