Last active
July 29, 2017 15:44
-
-
Save tiagoandrepro/82215bf2ec3e9da20e3e30d16ce96dba to your computer and use it in GitHub Desktop.
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> | |
<head> | |
<title>Web Semântica</title> | |
</head> | |
<body> | |
<header> | |
<nav> | |
<ul> | |
<li>Link 1<li> | |
<li>Link 2<li> | |
<li>Link 3<li> | |
</ul> | |
</nav> | |
</header> | |
<!-- Fim Header--> | |
<main> | |
<section> | |
<h1>Titulo da Section</h1> | |
<p>Paragrafo da section</p> | |
</section> | |
<section> | |
<article> | |
<h2>Titulo Article 1<h2> | |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> | |
<footer>Criado por: </footer> | |
</article> | |
<article> | |
<h2>Titulo Article 2<h2> | |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> | |
<footer>Publicado em: </footer> | |
</article> | |
<section> | |
</main> | |
<!-- Fim main--> | |
<aside> | |
<ul> | |
<li>Link 1<li> | |
<li>Link 2<li> | |
<li>Link 3<li> | |
</ul> | |
</aside> | |
<!-- Fim aside--> | |
<footer> | |
<nav> | |
<ul> | |
<li>Link 1<li> | |
<li>Link 2<li> | |
</ul> | |
<p>Desenvolvido por<p> | |
</nav> | |
</footer><!-- Fim footer--> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment