-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (80 loc) · 3.83 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
<!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>TOP Landing Page Project</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Topper section will have same background color for all boxes -->
<div class="topper">
<div class="helpmecenterthis">
<div class="navbar">
<div class="push-left bold">Header Logo</div>
<div class="push-right">
<ul>
<li>header link one</li>
<li>header link two</li>
<li>header link three</li>
</ul>
</div>
</div>
<div class="banner">
<div class="banner-left">
<div class="headline bold">This website is awesome</div>
<div class="text">This website has some subtext that goes here under the main title. It's a smaller font and the color is lower contrast.</div>
<div><button class="signup">Sign up</button></div>
</div>
<img class="img-placeholder" src="https://via.placeholder.com/500x250" alt="bannerimage">
</div>
</div>
</div>
<!-- Main section includes the white space on page -->
<div class="main-section">
<div class="container-one">
<div class="headline bold">Some random information.</div>
<div class="four-boxes-container">
<div class="boxes">
<div class="one">
<img src="https://via.placeholder.com/500" alt="image1" class="infoimgs">
<div class="text">this is some subtext under an illustration or image</div>
</div>
<div class="two">
<img src="https://via.placeholder.com/500" alt="image2" class="infoimgs">
<div class="text">this is some subtext under an illustration or image</div>
</div>
<div class="three">
<img src="https://via.placeholder.com/500" alt="image3" class="infoimgs">
<div class="text">this is some subtext under an illustration or image</div>
</div>
<div class="four">
<img src="https://via.placeholder.com/500" alt="image4" class="infoimgs">
<div class="text">this is some subtext under an illustration or image</div>
</div>
</div>
</div>
</div>
<div class="container-two">
<div class="quotebox">
<blockquote class="quote"><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>
<blockquote class="quote-attribute bold">-Thor, God of Thunder</blockquote>
</div>
</div>
<div class="container-three">
<div class="cta-outer">
<div class="call-to-action-box">
<div class="cta-left">
<div class="bold">Call to action! It's time!</div>
<div class="text">Sign up for our product by clicking that button right over there!</div>
</div>
<button class="signup push-right">Sign up</button>
</div>
</div>
</div>
</div>
<!-- Footer section same background as top, can set both with .x, .a {} -->
<footer>Copyright (c) The Odin Project 2021</footer>
</body>
</html>