-
Notifications
You must be signed in to change notification settings - Fork 0
/
blogpost.html
27 lines (27 loc) · 1000 Bytes
/
blogpost.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bienvenido a Hyperblog 2.0</title>
<link rel="stylesheet" href="css/estilos.css"/> <!-conectar con doc css->
</head>
<body>
<div id="container">
<div id="cabecera">
<img id="logo" src="imagenes/dragon.png" />
Hyperblog
<span id="tagline">Tu blog de cabecera</span>
</div>
<div id="post">
<h1>TÍTULO POST</h1>
<p>Párrafo inicial, donde veremos todo lo que se puede hacer con ramas</p>
<p>Los blogs son una herramienta tecnológica muy importante ya que son una fuente de información.</p>
<p>Este es el párrafo hecho en la segunda rama, pues en la primera me equivoqué y no hice bien el merge porque no pude salir del puto vim bien.</p>
<p>Suscribete y dale like</p>
</div>
<div id="footer">
Hecho con Platzi!
</div>
</div>
</body>
</html>