-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathListing_11.23.html
More file actions
184 lines (172 loc) · 3.94 KB
/
Listing_11.23.html
File metadata and controls
184 lines (172 loc) · 3.94 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<style>
html,
body {
margin: 0;
padding: 0;
}
h1, h2, h3 {
margin-top: 0;
text-align: center;
}
.subtitle {
text-align: center;
}
.menulist {
margin: 0;
list-style: none;
padding: 0;
}
.landing_cta {
margin-top: 1.5em;
text-align: center;
}
.header {
background-color: #000;
color: #fff;
padding: 1em;
text-align: center;
}
.hero {
background-color: #a8d6f7;
min-height: 50vh;
text-align: center;
}
.options {
background-color: #4a7696;
color: #fff;
padding: 4em 0;
}
.options_item-img {
width: 100%;
}
.info {
padding: 8em 0;
}
.feature {
min-height: 70vh;
}
.footer {
background-color: #ddd;
padding: 4em 1em;
}
</style>
</head>
<body>
<header class="header">
<div class="header_content">
I am a Header
</div>
</header>
<section class="hero">
<h1 class="hero_title">
I am an Important Message
</h1>
<div class="hero_content">
And I am a less important, but still a very important
thing to consider.
</div>
</section>
<section class="options">
<h2 class="options_title">
Here are Some Choices
</h2>
<div class="options_content">
<div>
Stuff
</div>
<div>
Different Stuff
</div>
<div>
All the Stuff
</div>
</div>
</section>
<section class="info">
<h2 class="info_title">
I am Some More info
</h2>
<div class="subtitle">
Say you are in the country.
</div>
<div class="info_content">
<p>
In some high land of lakes. Take almost any path you
please, and ten to one it carries you down in a dale,
and leaves you there by a pool in the stream. There
is magic in it. But here is an artist. He desires to
paint you the dreamiest, shadiest, quietest, most
enchanting bit of romantic landscape in all the
valley of the Saco.
</p>
</div>
</section>
<section class="feature">
<div class="feature_img"></div>
<div class="feature_content feature_content-1">
Let the most absent-minded of men be plunged in his
deepest reveries—stand that man on his legs, set his
feet a-going, and he will infallibly lead you to water,
if water there be in all that region.
</div>
<div class="feature_content feature_content-2">
Take almost any path you please, and ten to one it
carries you down in a dale, and leaves you there by a
pool in the stream. There is magic in it.
</div>
</section>
<footer class="footer">
<h3 class="footer_title">
I am a Footer
</h3>
<ul class="menulist footer_menu-first">
<li>
Products
</li>
<li>
<a href="">Footer link</a>
</li>
<li>
<a href="">Footer link</a>
</li>
</ul>
<ul class="menulist">
<li>
About
</li>
<li>
<a href="">Footer link</a>
</li>
<li>
<a href="">Footer link</a>
</li>
</ul>
<ul class="menulist">
<li>
Links
</li>
<li>
<a href="">Footer link</a>
</li>
<li>
<a href="">Footer link</a>
</li>
</ul>
<ul class="menulist">
<li>
Account
</li>
<li>
<a href="">Footer link</a>
</li>
<li>
<a href="">Footer link</a>
</li>
</ul>
</footer>
</body>
</html>