Created
March 15, 2017 02:00
-
-
Save alexsc6955/618ef2aa99ef58aefd38f52cd7674e74 to your computer and use it in GitHub Desktop.
HTML5 Page structure.
This file contains hidden or 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="es" class="no-js"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Mi página Web</title> | |
</head> | |
<body> | |
<header> | |
<h1>Mi página web</h1> | |
<nav> | |
<ul> | |
<li>menú</li> | |
</ul> | |
</nav> | |
</header> | |
<div role="main"> | |
<section id="content"> | |
<article> | |
<header> | |
<h2>Título de artículo</h2> | |
<p> | |
<time datetime="2017-03-14T16:31:24+02:00">Febrero 4, 2009</time> | |
por <a href="#">Autor</a> - <a href="#comments">6 comentarios</a> | |
</p> | |
</header> | |
<p> | |
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. | |
</p> | |
</article> | |
</section> | |
<section id="sidebar"> | |
<aside> | |
<h3>Busqueda</h3> | |
<form action="http://my.site" method="GET"> | |
<label for="search"> | |
Buscar | |
<input type="search" name="search"> | |
</label> | |
</form> | |
</aside> | |
</section> | |
</div> | |
<footer> | |
<p>Copyright MiSitio</p> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment