-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
169 lines (154 loc) · 6.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Blogr</title>
</head>
<body>
<header>
<div class="menu-hamburger">
<div class="logo"> <img src="images/logo.svg" alt="logo"> </div>
<div class="burger">
<img src="images/icon-hamburger.svg" alt="">
</div>
</div>
<nav class="nav">
<div class="nav-left">
<div class="logo"> <img src="images/logo.svg" alt="logo"> </div>
<ul>
<li class="menu-li"><a href="#">Product <img src="images/icon-arrow-light.svg"> </a>
<div class="box-product">
<ul>
<li>Overview</li>
<li>Pricing</li>
<li>Marketplace</li>
<li>Features</li>
<li>Integrations</li>
</ul>
</div>
</li>
<li class="menu-li"><a href="#">Company <span><img src="images/icon-arrow-light.svg"></span></a>
<div class="box-product">
<ul>
<li>About</li>
<li>Team</li>
<li>Blog</li>
<li>Careers</li>
</ul>
</div>
</li>
<li class="menu-li"><a href="#">Connect <span><img src="images/icon-arrow-light.svg"></span></a>
<div class="box-product">
<ul>
<li>Contact</li>
<li>Newsletter</li>
<li>LinkedIn</li>
</ul>
</div>
</li>
</ul>
</div>
<div class="nav-right">
<p>login</p>
<button class="style-button">Sign Up</button>
</div>
</nav>
<div class="content-center">
<h1>A modern publishing platform</h1>
<p>Grow your audience and build your online brand</p>
<button class="style-button">Start for Free</button>
<button class="style-button">Learn More</button>
</div>
</header>
<main>
<section class="section-1">
<h2>Designed for the future</h2>
<div class="content-section-1">
<div class="box-mobile">
<img src="images/illustration-editor-mobile.svg">
</div>
<div class="box-content">
<h3>Introducing an extensible editor</h3>
<p>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>
<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="box-img">
<img src="images/illustration-editor-desktop.svg">
</div>
</div>
</section>
<section class="section-2">
<div class="phones">
<img src="images/illustration-phones.svg">
</div>
<div class="phones-text">
<h3>State of the Art Infrastructure</h3>
<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>
</section>
<section class="section-3">
<div class="content-section-3">
<div class="box-mobile">
<img src="images/illustration-laptop-mobile.svg">
</div>
<div class="box-content">
<h3>Free, open, simple</h3>
<p>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>Powerful tooling</h3>
<p>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 class="box-img">
<img src="images/illustration-laptop-desktop.svg">
</div>
</div>
</section>
</main>
<footer>
<div class="logo"><img src="images/logo.svg" alt="logo"></div>
<div class="box-footer">
<h4> Product </h4>
<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>
</div>
<div class="box-footer">
<h4>Company</h4>
<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>
</div>
<div class="box-footer">
<h4>Connect</h4>
<ul>
<li> <a href="#"> Contact </a> </li>
<li> <a href="#"> Newsletter </a> </li>
<li> <a href="#"> LinkedIn </a> </li>
</ul>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>