- 1
Rearrange the sections to create a generic HTML5 page structure
Right Answer first head 2nd header 3rd nav 4th footer
5 Respuestas
+ 2
Is your question from one of the challenge quizzes? I can't recall the exact same question, but in general the head element comes before the body element. It makes sense for the header within the body to come before the footer and for the nav tag to be after the header but before the footer within the body.
+ 2
correct answer is :-
1 head
2 header
3 nav
4 footer
+ 2
correct answer is :-
<header>
<nav>
<article>
<section>
<footer>
0
header
nav
article
section
footer
- 1