Last active
December 26, 2015 21:39
-
-
Save LeonidasEsteban/7217535 to your computer and use it in GitHub Desktop.
HTML puls3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Puls3</title> | |
<link rel="stylesheet" href="css/puls3.css"/> | |
</head> | |
<body> | |
<section class="container"> | |
<header class="header"> | |
<figure class="logo left"> | |
<img src="" alt=""> | |
</figure> | |
<div class="centro"> | |
<h1 class="nombre"> | |
Puls3 comunidad de gente atractiva y millonaria | |
</h1> | |
<div class="filter"> | |
<a href="">Programación</a> | |
</div> | |
<a href="" class="publicar">Publicar</a> | |
</div> | |
<div class="user right"> | |
<figure class="container"> | |
<img src="" alt=""> | |
</figure> | |
<ul class="dropdown"> | |
<li class="item"> | |
<a href="" class="link">Salir</a> | |
</li> | |
</ul> | |
</div> | |
</header> | |
<nav class="nav"> | |
<ul class="menu"> | |
<li class="item"> | |
<a href="" class="link">Python</a> | |
</li> | |
<li class="item"> | |
<a href="" class="link">HTML5</a> | |
</li> | |
<li class="item"> | |
<a href="" class="link">CSS3</a> | |
</li> | |
<li class="item"> | |
<a href="" class="link">javscript</a> | |
</li> | |
</ul> | |
</nav> | |
<section class="posts"> | |
<article class="post"> | |
<div class="description"> | |
<figure class="img"> | |
<img src="" alt=""> | |
</figure> | |
<div class="detalles"> | |
<h2 class="titulo"> | |
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Culpa, quasi. | |
</h2> | |
<p class="autor"> | |
por <span>Leonidas Esteban</span> | |
</p> | |
<div class="tags"> | |
<a href="" class="tag">html5</a> | |
<a href="" class="tag">css3</a> | |
</div> | |
<p class="fecha"> | |
hace <strong>5</strong> minutos | |
</p> | |
</div> | |
</div> | |
<div class="acciones"> | |
<div class="votos left"> | |
<p class="points"> | |
<a href="" class="up"></a> | |
<span class="total">15</span> | |
<a href="" class="down"></a> | |
</p> | |
</div> | |
<div class="right"> | |
<p> | |
<span class="comment"> | |
455 | |
</span> | |
<a href="" class="destacado icon-star"></a> | |
</p> | |
</div> | |
</div> | |
</article> | |
</section> | |
<footer class="footer"> | |
<h3 class="powered"> | |
<span class="copy"> | |
Powered by Platzi | |
</span> | |
<span class="mejor"> | |
Mejorando.la 2013 | |
</span> | |
</h3> | |
</footer> | |
</section> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment