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">
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<html lang="en">
<html lang="es">

El contenido está en español

<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>
Comment on lines +12 to +14
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<div>h1</div>
<nav>Navegación</nav>
</header>
<nav>Navegación</nav>
</header>


<main>
<div>article</div>
<div>section</div>
</main>
Comment on lines +16 to +19
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<main>
<div>article</div>
<div>section</div>
</main>
<main>
<article>
<header>
<h1>Content</h1>
</header>
<section>
<p>content</p>
</section>
<footer>content</footer>
</article>
</main>

De acuerdo a la imagen indicada en el ejercicio, los contenidos dentro de la etiqueta <main>, son definidos por ésta imagen: https://user-images.githubusercontent.com/36536646/79254810-e69dc380-7e4a-11ea-9f5e-75c6b8efec0b.png


<aside>
<div>content</div>
</aside>
Comment on lines +21 to +23
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<aside>
<div>content</div>
</aside>
<aside>
</aside>


<footer>
<div>footer</div>
<nav>Navegación</nav>
</footer>
Comment on lines +25 to +28
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<footer>
<div>footer</div>
<nav>Navegación</nav>
</footer>
<footer>
<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)