-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (83 loc) · 3.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="">
<title>Landing Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="section-one">
<div class="subheader">
<h1>Header Logo</h1>
<div class = "subheader-right">
<h2>header link one</h2>
<h2>header link two</h2>
<h2>header link three</h2>
</div>
</div>
<div class="section-one_content">
<div class="section-one_content-left">
<div id="hero-main-text">
This website is awesome
</div>
<div id="hero-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.
</div>
<button>
Sign up
</button>
</div>
<div class="image-placeholder">
this is a placeholder for an image
</div>
</div>
</div>
<div class="section-two">
<div class="information-header">
Some random information.
</div>
<div class="illustrations">
<div class="info">
<div class="illustration"></div>
this is some subtext under an illustration or an image
</div>
<div class="info">
<div class="illustration"></div>
this is some subtext under an illustration or an image
</div>
<div class="info">
<div class="illustration"></div>
this is some subtext under an illustration or an image
</div>
<div class="info">
<div class="illustration"></div>
this is some subtext under an illustration or an image
</div>
</div>
</div>
<div class="section-three">
<blockquote>
This is an inspiring quote, or a testimonial from a customer. Maybe it's just filling up space or people will actually read it. Who know? All I know is that it looks nice.
</blockquote>
<cite>
- Thor, God of Thunder
</cite>
</div>
<div class="section-four">
<div class="section-four_left">
<div class="call"> Call to action! It's time!</div>
<div class="call-subtext"> Sign up for our product by clicking that button right over there!</div>
</div>
<div class="section-four_right">
<button> Sign up </button>
</div>
</div>
<footer>
Copyright © The Odin Project 2022
</footer>
</body>
</html>