forked from theNoobCoderd/blogr_landing_page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
178 lines (162 loc) · 5.75 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
<!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="./images/favicon-32x32.png">
<!-- CSS -->
<link rel="stylesheet" href="css/main.css">
<!-- Google Fonts-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Overpass:wght@300;600&display=swap" rel="stylesheet">
<title>Frontend Mentor | [Blogr]</title>
</head>
<body>
<header class="header-blogr">
<div class="container">
<div class="nav-bar">
<h1 class="logo">
Blogr
</h1>
<div class="hamburger-menu">
<img src="./images/icon-hamburger.svg" alt="hamburger-menu">
</div>
</div>
<div class="header-section">
<h2 class="header-title">
A modern publishing platform
</h2>
<p>
Grow your audience and build your online brand
</p>
<div class="btn-group">
<a href="" class="btn btn-primary">Start for Free</a>
<div class="spacer"></div>
<a href="" class="btn btn-primary">Learn More</a>
</div>
</div>
</div>
</header>
<main>
<section class="section-one">
<div class="container">
<header>
<h2 class="section-header">
Designed for the future
</h2>
</header>
<img src="./images/illustration-editor-mobile.svg" alt="Illustration">
<div class="section-description">
<h2 class="header-sub">
Introducing an extensible editor
</h2>
<p class="section-description-sub">
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>
<h2 class="header-sub">
Robust content management
</h2>
<p class="section-description-sub">
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>
</section>
<section class="section-two">
<img src="./images/illustration-phones.svg" alt="Phone Illustration" class="image-asd">
<header>
<div class="container">
<h2 class="section-header">
State of the Art Infrastructure
</h2>
<p>
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>
</header>
</section>
<section class="section-three">
<header>
<img src="./images/illustration-laptop-mobile.svg"
alt="Laptop Illustration" class="mobile-img">
</header>
<div class="container">
<div class="section-description">
<h3 class="header-sub">
Free, open, simple
</h3>
<p class="section-description-sub">
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>
<h3 class="header-sub">
Powerful tooling
</h3>
<p class="section-description-sub">
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>
</section>
<footer>
<div class="container">
<header>
<h1 class="logo">
Blogr
</h1>
</header>
<div class="footer-product">
<div class="product-title">
<h4>Product</h4>
</div>
<div class="product-list">
<ul class="footer-product">
<li>Overview</li>
<li>Pricing</li>
<li>Marketplace</li>
<li>Features</li>
<li>Integrations</li>
</ul>
</div>
</div>
<div class="footer-company">
<div class="company-title">
<h4>Company</h4>
</div>
<div class="company-list">
<ul class="footer-company">
<li>About</li>
<li>Team</li>
<li>Blog</li>
<li>Careers</li>
</ul>
</div>
</div>
<div class="footer-connect">
<div class="connect-title">
<h4>Connect</h4>
</div>
<div class="connect-list">
<ul class="footer-connect">
<li>Contact</li>
<li>Newsletter</li>
<li>LinkedIn</li>
</ul>
</div>
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</div>
</div>
</footer>
</main>
</body>
</html>