-
Notifications
You must be signed in to change notification settings - Fork 0
Actividad html semántico #2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
| @@ -0,0 +1,30 @@ | |||
|
|
|||
| <!DOCTYPE html> | |||
| <html lang="en"> | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| <html lang="en"> | |
| <html lang="es"> |
El contenido está en español
| <div>h1</div> | ||
| <nav>Navegación</nav> | ||
| </header> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| <div>h1</div> | |
| <nav>Navegación</nav> | |
| </header> | |
| <nav>Navegación</nav> | |
| </header> |
| <aside> | ||
| <div>content</div> | ||
| </aside> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| <aside> | |
| <div>content</div> | |
| </aside> | |
| <aside> | |
| </aside> |
| <footer> | ||
| <div>footer</div> | ||
| <nav>Navegación</nav> | ||
| </footer> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| <footer> | |
| <div>footer</div> | |
| <nav>Navegación</nav> | |
| </footer> | |
| <footer> | |
| <nav>Navegación</nav> | |
| </footer> |
| <main> | ||
| <div>article</div> | ||
| <div>section</div> | ||
| </main> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| <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
No description provided.