-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
188 lines (158 loc) · 4.73 KB
/
index.html
File metadata and controls
188 lines (158 loc) · 4.73 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
185
186
187
188
<!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">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.google.com/specimen/Overpass?preview.text_type=custom" rel="stylesheet">
<link href="https://fonts.google.com/specimen/Ubuntu?preview.text_type=custom" rel="stylesheet">
<title>Frontend Mentor | [Blogr]</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
</head>
<body background="images/bg-pattern-circles.svg">
<header>
<nav>
<div class="navbar">
<div class="logo">
<img src="images/logo.svg" alt="">
</div>
<div class="dropdown">
Product
</div>
<div class="dropdown-content">
<a href="#">Overview</a>
<a href="#"> Pricing</a>
<a href="#"> Marketplace</a>
<a href="#"> Features</a>
<a href="#"> Integrations</a>
</div>
<div class="dropdown">
Company
</div>
<div class="dropdown-content">
<a href="#"> About</a>
<a href="#"> Team</a>
<a href="#"> Blog</a>
<a href="#">Careers</a>
</div>
<div class="dropdown">
Connect
</div>
<div class="dropdown-content">
<a href="#"> Contact </a>
<a href="#"> Newsletter </a>
<a href="#"> LinkedIn </a>
</div>
<div class="grow"></div>
<div class="login-buttons">
<a href="#" class="btn1">
Login
</div>
<a href="#" class="btn2">
Sign Up
</div>
</div>
</nav>
<div class="article">
<div class="headline">
<h1> A modern publishing platform</h1>
</div>
<div class="subheadline">
<h3>Grow your audience and build your online brand</h3>
</div>
<div class="cta-btns">
<a href="#" class="btn2">
Start for Free
</a>
<a href="#" class="btn3">
Learn More
</a>
</div>
</header>
<section>
<div class="section1">
<div class="second-headline">
<h2> Designed for the future </h2>
</div>
<div class="container">
<div class="paragraphs">
<div class="paragraph1">
<h3> Introducing an extensible editor</h3>
<p> 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="pragraph2"></div>
<h3> Robust content management</h3>
<p>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 class="illustration">
<img src="images/illustration-editor-desktop.svg" alt="">
</div>
</div>
</div>
</div>
</section>
</section>
<section>
<div class="section2"></div>
<div class="paragraphstyle2">
<h2> 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>
<div class="section3">
Free, open, simple
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.
Powerful tooling
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.
</div>
</section>
<footer>
<div class="footer-section">
<div class="item1">
<img src="images/logo.svg" alt="">
</div>
<div class="item2">
Product
<a href="">> Overview</a>
<a href="">Pricing</a>
<a href=""> Marketplace</a>
<a href="">Features</a>
<a href=""> Integrations</a>
</div>
<div class="item3">
Company
<a href=""> About</a>
<a href="">Team</a>
<a href=""> Blog</a>
<a href=""> Careers</a>
</div>
<div class="item4">
Connect
<a href=""> Contact
Newsletter
LinkedIn
</div>
</div>
</footer>
<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>
</body>
</html>