Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions 3-semantic-html/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

<!DOCTYPE html>
<html lang="en">
<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">
<title>Html Semantico</title>
</head>
<body>
<header>
<div>h1</div>
<nav>Navegación</nav>
</header>

<main>
<div>article</div>
<div>section</div>
</main>

<aside>
<div>content</div>
</aside>

<footer>
<div>footer</div>
<nav>Navegación</nav>
</footer>
</body>
</html>
2 changes: 2 additions & 0 deletions 3-semantic-html/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,3 +150,5 @@ Let's see more examples: [Semantic structure](https://www.internetingishard.com/
* [Semantic structure](https://www.internetingishard.com/html-and-css/semantic-html/)
* [Why use semantic HTML](https://www.lifewire.com/why-use-semantic-html-3468271)
* [Element list](https://developer.mozilla.org/es/docs/HTML/HTML5/HTML5_lista_elementos)