-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
351 lines (320 loc) · 11.9 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
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- displays site properly based on user's device -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./develop/assets/images/favicon-32x32.png"
/>
<!-- GOOGLE FONTS -->
<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=Overpass:wght@300;600&family=Ubuntu:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<!-- CUSTOM CSS -->
<link rel="stylesheet" href="./develop/css/styles.css" />
<!-- CUSTOM JS -->
<script src="./develop/js/script.js" defer></script>
<title>Frontend Mentor | [Blogr]</title>
<!-- Feel free to remove these styles or customize in your own stylesheet 👍 -->
<style>
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style>
</head>
<body>
<header class="[ header ] [ center ]">
<section class="[ header-top ] [ center ]">
<div class="[ header-top__logo ]">
<img src="./develop/assets/images/logo.svg" alt="Blogr." />
</div>
<nav aria-label="header-top navigation" class="[ header-top__navbar ]">
<button class="[ menu ]" aria-expanded="false" aria-label="Menu">
<img
src="./develop/assets/images/icon-hamburger.svg"
alt=""
aria-hidden="true"
/>
</button>
<ul class="[ nav-list ]">
<li class="[ tab has-submenu ]">
<a
href="#"
class="[ tab__item ]"
aria-haspopup="true"
aria-expanded="false"
>Product</a
>
<button class="[ has-icon ]" aria-expanded="false">
<picture>
<source
srcset="./develop/assets/images/icon-arrow-light.svg"
media="(min-width: 48em)"
/>
<source
srcset="./develop/assets/images/icon-arrow-dark.svg"
media="(min-width: 23.4375em)"
/>
<img
class="[ icon ]"
src="./develop/assets/images/icon-arrow-dark.svg"
alt=""
/>
</picture>
<span class="[ sr-only ]">Dropdown Menu</span>
</button>
<ul class="[ sub-menu ]">
<li><a href="#">Contact</a></li>
<li><a href="#">Newsletter</a></li>
<li><a href="#">LinkedIn</a></li>
</ul>
</li>
<li class="[ tab has-submenu ]">
<a
href="#"
class="[ tab__item ]"
aria-haspopup="true"
aria-expanded="false"
>Company</a
>
<button class="[ has-icon ]" aria-expanded="false">
<picture>
<source
srcset="./develop/assets/images/icon-arrow-light.svg"
media="(min-width: 48em)"
/>
<source
srcset="./develop/assets/images/icon-arrow-dark.svg"
media="(min-width: 23.4375em)"
/>
<img
class="[ icon ]"
src="./develop/assets/images/icon-arrow-dark.svg"
alt=""
/>
</picture>
<span class="[ sr-only ]">Dropdown Menu</span>
</button>
<ul class="[ sub-menu ]">
<li><a href="#">Contact</a></li>
<li><a href="#">Newsletter</a></li>
<li><a href="#">LinkedIn</a></li>
</ul>
</li>
<li class="[ tab has-submenu ]">
<a
href="#"
class="[ tab__item ]"
aria-haspopup="true"
aria-expanded="false"
>Connect</a
>
<button class="[ has-icon ]" aria-expanded="false">
<picture>
<source
srcset="./develop/assets/images/icon-arrow-light.svg"
media="(min-width: 48em)"
/>
<source
srcset="./develop/assets/images/icon-arrow-dark.svg"
media="(min-width: 23.4375em)"
/>
<img
class="[ icon ]"
src="./develop/assets/images/icon-arrow-dark.svg"
alt=""
/>
</picture>
<span class="[ sr-only ]">Dropdown Menu</span>
</button>
<ul class="[ sub-menu ]">
<li><a href="#">Contact</a></li>
<li><a href="#">Newsletter</a></li>
<li><a href="#">LinkedIn</a></li>
</ul>
</li>
<hr />
<li class="[ login ]"><a href="#">Login</a></li>
<li class="[ register ]"><a href="#">Sign Up</a></li>
</ul>
</nav>
</section>
<section class="[ header-bottom ]">
<div class="[ header-bottom__cta-with-text ]">
<div class="[ text-info ]">
<h1 class="[ fw-semi-bold lh-55 text-align-center text-white ]">
A modern publishing platform
</h1>
<p class="[ fw-regular lh-28 text-align-center text-white ]">
Grow your audience and build your online brand
</p>
</div>
<div class="[ wrapper--buttons ]">
<a href="#" class="[ btn invert ]">Start for Free</a>
<a href="#" class="[ btn white-border ]">Learn More</a>
</div>
</div>
</section>
</header>
<main class="[ main ] [ center ]">
<h2 class="[ fw-semi-bold text-align-center text-very-dark-blue ]">
Designed for the future
</h2>
<div class="[ product ] [ grid ]">
<div class="[ product__image ] [ frame ]">
<picture>
<source
srcset="./develop/assets/images/illustration-editor-desktop.svg"
media="(min-width: 48em)"
/>
<source
srcset="./develop/assets/images/illustration-editor-mobile.svg"
media="(min-width: 23.4375em)"
/>
<img
src="./develop/assets/images/illustration-editor-mobile.svg"
alt=""
/>
</picture>
</div>
<div class="[ product__content ]">
<div class="wrapper">
<h3 class="[ fw-semi-bold text-very-dark-blue ]">
Introducing an extensible editor
</h3>
<p class="[ lh-28 text-very-dark-grayish-blue ]">
Blogr features an exceedingly intuitive interface which lets you
focus on one thing: creating content. The editor supports
management of multiple blogs and allows easy manipulation of
embeds such as images, videos, and Markdown. Extensibility with
plugins and themes provide easy ways to add functionality or
change the looks of a blog.
</p>
</div>
<div class="wrapper">
<h3 class="[ fw-semi-bold text-very-dark-blue ]">
Robust content management
</h3>
<p class="[ lh-28 text-very-dark-grayish-blue ]">
Flexible content management enables users to easily move through
posts. Increase the usability of your blog by adding customized
categories, sections, format, or flow. With this functionality,
you’re in full control.
</p>
</div>
</div>
</div>
<div class="[ product-mobile ] [ grid ]">
<div class="[ product-mobile__background ]"></div>
<div class="[ product-mobile__image ] [ frame ]">
<img src="./develop/assets/images/illustration-phones.svg" alt="" />
</div>
<div class="[ product-mobile__content ]">
<span class="[ header--large ] [ fw-semi-bold lh-61 text-white ]"
>State of the Art Infrastructure</span
>
<p class="[ fw-regular lh-28 text-white ]">
With reliability and speed in mind, worldwide data centers provide
the backbone for ultra-fast connectivity. This ensures your site
will load instantly, no matter where your readers are, keeping your
site competitive.
</p>
</div>
</div>
<div class="[ product product__reversed ] [ grid ]">
<div class="[ product__image ] [ frame ]">
<picture>
<source
srcset="./develop/assets/images/illustration-laptop-desktop.svg"
media="(min-width: 48em)"
/>
<source
srcset="./develop/assets/images/illustration-laptop-mobile.svg"
media="(min-width: 23.4375em)"
/>
<img
src="./develop/assets/images/illustration-laptop-mobile.svg"
alt=""
/>
</picture>
</div>
<div class="[ product__content ]">
<div class="wrapper">
<h3 class="[ fw-semi-bold text-very-dark-blue ]">
Free, open, simple
</h3>
<p class="[ lh-28 text-very-dark-grayish-blue ]">
Blogr is a free and open source application backed by a large
community of helpful developers. It supports features such as code
syntax highlighting, RSS feeds, social media integration,
third-party commenting tools, and works seamlessly with Google
Analytics. The architecture is clean and is relatively easy to
learn.
</p>
</div>
<div class="wrapper">
<h3 class="[ fw-semi-bold text-very-dark-blue ]">
Powerful tooling
</h3>
<p class="[ lh-28 text-very-dark-grayish-blue ]">
Batteries included. We built a simple and straightforward CLI tool
that makes customization and deployment a breeze, but capable of
producing even the most complicated sites.
</p>
</div>
</div>
</div>
</main>
<footer class="[ footer ]">
<div class="[ footer__logo ]">
<img src="./develop/assets/images/logo.svg" alt="Blogr." />
</div>
<ul class="[ footer__nav ]" aria-label="footer navigation">
<li>
<a href="#">Product</a>
<ul>
<li><a href="#">Overview</a></li>
<li><a href="#">Pricing</a></li>
<li><a href="#">Marketplace</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Integrations</a></li>
</ul>
</li>
<li>
<a href="#">Company</a>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Careers</a></li>
</ul>
</li>
<li>
<a href="#">Connect</a>
<ul>
<li><a href="#">Contact</a></li>
<li><a href="#">Newsletter</a></li>
<li><a href="#">LinkedIn</a></li>
</ul>
</li>
</ul>
</footer>
<!-- <div class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor</a
>. Coded by <a href="#">Daniel Arzanipour</a>.
</div> -->
</body>
</html>