-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (72 loc) · 3.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<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>
</head>
<body>
<header>
<div class="header-section">
<div id="logo-container"><h3 id="logo-text">Header Logo</h3></div>
<div id="header-links-container">
<ul>
<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 id="header-text-container">
<div id="header-main-text-container">
<h3 class="main-text">This website is awesome</h3>
</div>
<div id="header-secondary-text-container">
<p id="header-secondary-text">This website has some subtext that goes here under the main title. It's a smaller font and the color is lower contrast</p>
</div>
<button class="sign-up-button">Sign up</button>
</div>
<div class="header-image-container"><img id="header-image" src="https://images.squarespace-cdn.com/content/v1/5f87049aad3fba4776af1619/1605460854705-9E1CL51F622QOPTYA126/blanklogo.jpg"></div>
</div>
</header>
<main>
<section class="main-content">
<div class="information-text-container">
<p class="information-text">Some random information.</p>
</div>
<div class="illustration-section">
<div class="illustration"></div>
<div class="illustration"></div>
<div class="illustration"></div>
<div class="illustration"></div>
</div>
<div class="subtext-container">
<ul class="subtext">
<li class="subtest-li">this is some subtext under an illustration or image</li>
<li class="subtest-li">this is some subtext under an illustration or image</li>
<li class="subtest-li">this is some subtext under an illustration or image</li>
<li class="subtest-li">this is some subtext under an illustration or image</li>
</ul>
</div>
<div class="quote-section">
<p class="quote-text">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>
<h5 class="quote-author">-Thor, God of Thunder</h5>
</div>
<div class="blue-sign-up-section">
<div class="blue-sign-up-container">
<h5 class="blue-sign-up-heading">Call to action! It's time!</h5>
<p class="blue-sign-up-subtext">Sign up for our product by clicking that button right over there!</p>
<button class="sign-up-button" id="blue-sign-up-button-2">Sign up</button>
</div>
</div>
<footer>
<p class="footer-text">Copyright © 2022 By Kaspar Foehrkolb#7232</p>
</footer>
</section>
</main>
</body>
</html>