-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
145 lines (132 loc) · 5.58 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
<!DOCTYPE html>
<html lang="pt-br">
<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="shortcut icon" href="src/img/favicon-32x32.png" type="image/x-icon">
<link rel="stylesheet" href="src/css/variables.css">
<link rel="stylesheet" href="src/css/reset.css">
<link rel="stylesheet" href="src/css/style.css">
<link rel="stylesheet" href="src/css/responsive.css">
<title>Blogr</title>
</head>
<body>
<header class="cabecalho">
<div class="container">
<nav class="nav">
<a href="#"><img src="src/img/logo.svg" alt="Marca da Blogr"></a>
<button id="menu-mobile" data-hamburguer aria-label="Abrir Menu" aria-haspopup="true" aria-controls="menu" aria-expanded="false"><span id="hamburguer"></span></button>
<div class="menu-links" role="menu">
<ul class="servicos">
<li>
<a href="#" class="link">Product</a>
</li>
<li>
<a href="#" class="link">Company</a>
</li>
<li data-dropdown>
<a href="#" class="link">Connect</a>
<ul class="dropdown-menu">
<li><a href="#">Contact</a></li>
<li><a href="#">Newsletter</a></li>
<li><a href="#">LinkedIn</a></li>
</ul>
</li>
</ul>
<ul class="links-usuario">
<li><a href="#" class="login">Login</a></li>
<li><a href="#" class="call">Sign Up</a></li>
</ul>
</div>
</nav>
<div class="introducao">
<h1 class="titulo">A modern publishing platform</h1>
<p class="descricao">Grow your audience and build your online brand</p>
<ul class="lista-call">
<li><a href="#" class="call">Start for Free</a></li>
<li><a href="#" class="call-learn">Learn More</a></li>
</ul>
</div>
</div>
</header>
<main>
<section class="projeto">
<div class="container">
<h2 class="titulo">Designed for the future</h2>
<div class="divisor-conteudo">
<div class="info-dupla">
<div>
<h3 class="subtitulo">Introducing an extensible editor</h3>
<p class="conteudo">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>
<h3 class="subtitulo">Robust content management</h3>
<p class="conteudo">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>
</section>
<section class="infraestrutura">
<div class="container">
<div class="divisor-conteudo">
<div class="info-unica">
<h2 class="subtitulo">State of the Art Infrastructure</h2>
<p class="conteudo">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>
</section>
<section class="detalhes">
<div class="container">
<div class="divisor-conteudo">
<div class="info-dupla">
<div>
<h3 class="subtitulo">Free, open, simple</h3>
<p class="conteudo">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>
<h3 class="subtitulo">Powerful tooling</h3>
<p class="conteudo">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>
</div>
</section>
</main>
<footer class="rodape">
<div class="container">
<a href="#"><img src="src/img/logo.svg" alt="Marca da Blogr"></a>
<div class="rodape-links">
<p>Product</p>
<ul class="conheca-mais">
<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="rodape-links">
<p>Company</p>
<ul class="conheca-mais">
<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="rodape-links">
<p>Connect</p>
<ul class="conheca-mais">
<li><a href="#">Contact</a></li>
<li><a href="#">Newsletter</a></li>
<li><a href="#">LinkedIn</a></li>
</ul>
</div>
</div>
</footer>
<script src="src/js/index.js"></script>
</body>
</html>