-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (67 loc) · 3.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:[email protected]&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
</style>
<title>Landing Page</title>
</head>
<body>
<div class="header">
<div class="navigation-bar">
<div class="logo">Header Logo</div>
<div class="link push-right"><a href="." target="_self" rel="noopener noreferrer">header link one</a></div>
<div class="link"><a href="." target="_self" rel="noopener noreferrer">header link two</a></div>
<div class="link"><a href="." target="_self" rel="noopener noreferrer">header link three</a></div>
</div>
<div class="hero-container">
<div class="hero-text">
<div class="hero">This website is awesome</div>
<div class="secondary">This website has some subtext that goes here under the main title. It's a smaller
font and the color is lower contrast</div>
<button id="hero-signup">Sign Up</button>
</div>
<div class="placeholder">this is a placeholder for an image</div>
</div>
</div>
<div class="information-container">
<div class="information-title">Some random information.</div>
<div class="info-card-container">
<div class="info-card">
<div class="info-image"></div>
<div class="info-text">this is some subtext under an illustration of image</div>
</div>
<div class="info-card">
<div class="info-image"></div>
<div class="info-text">this is some subtext under an illustration of image</div>
</div>
<div class="info-card">
<div class="info-image"></div>
<div class="info-text">this is some subtext under an illustration of image</div>
</div>
<div class="info-card">
<div class="info-image"></div>
<div class="info-text">this is some subtext under an illustration of image</div>
</div>
</div>
</div>
<div class="quote-container">
<div class="quote">This is an inspiring quote, or a testamonial from a customer. Maybe it's just filling up
space, or maybe people will actually read it. Who know? All I know is that is looks nice.</div>
<div class="originator">-Thor, God of Thunder</div>
</div>
<div class="signup-container">
<div class="signup-text">
<div class="call-to-action">Call to action! It's time!</div>
<div class="signup-info">Sign up for our product by clicking that button right over there!</div>
</div>
<button id="bottom-signup">Sign Up</button>
</div>
<div class="footer">
<div class="copyright">Copyright © The Odin Project 2021</div>
</div>
</body>
</html>