-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
102 lines (89 loc) · 3.54 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
<!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>Project Landing Page</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<header>
<div class="header-top">
<h1 class="hero-text">Header Logo</h1>
<ul class="header-links">
<li><a href="">Header link one</a></li>
<li><a href="">Header link two</a></li>
<li><a href="">Header link three</a></li>
</ul>
</div>
<div class="header-content">
<div class="header-content-left">
<h1 class="hero-main-text">This website is awesome</h1>
<p class="hero-secondary-text">This website has some subtext that goes here under the main title. Its a smaller font and the color is lower contrast</p>
<button>Sign Up</button>
</div>
<div class="header-content-right">
<p class="placeholder-text">This is a placeholder for an image</p>
</div>
</div>
</header>
<!-- Random Information Section -->
<section class="random-info">
<h1>Some random information.</h1>
<div class="information-box">
<div class="box-content">
<div class="image">
<img src="./Images/benjamin-vang-C-9-csAYl8A-unsplash.jpg" alt="">
</div>
this is some subtext under an illustration or image
</div>
<div class="box-content">
<div class="image">
<img src="./Images/skyler-ewing-PzDRS3Vo5zc-unsplash.jpg" alt="">
</div>
this is some subtext under an illustration or image
</div>
<div class="box-content">
<div class="image">
<img src="./Images/whoisbenjamin-SWPyee1pMDQ-unsplash (1).jpg" alt="">
</div>
this is some subtext under an illustration or image
</div>
<div class="box-content">
<div class="image">
<img src="./Images/whoisbenjamin-SWPyee1pMDQ-unsplash.jpg" alt="">
</div>
this is some subtext under an illustration or image
</div>
</div>
</section>
<!-- End Ranodom-info Section -->
<!-- Section - Quote -->
<section class="quote">
<div class="quote-box">
<p class="quote-text">"Learn to light a candle in the darkest moments of someone's life. Be the light that helps others see. This is what gives life its deepest significance"</p>
<label for="">-- Roy T Bennett</label>
</div>
</section>
<!-- End of Section - Qoute -->
<!-- Sign-Up - Section -->
<section class="sign-up">
<div class="action-box">
<div class="action-box-left">
<h1 class="action-text">Call to action! Its time!</h1>
<p>Sign up for our products by clicking that button right over there!</p>
</div>
<div class="action-box-right">
<button class="sign-up">Sign Up</button>
</div>
</div>
</section>
<!-- End of Sign Up Section -->
<!-- Footer -->
<footer class="footer-container">
<p class="footer-text">Copyright <span>©</span> The Odin Project 2022</p>
</footer>
<!-- End of Footer -->
</body>
</html>