0
I don’t understand about the structure of HTML5
<head> <header> <nav> <footer> My question is how comes first ??!! Thanks https://code.sololearn.com/WRiUq5q62iRr/?ref=app
1 Réponse
+ 6
first off let's start with
<!doctype HTML>
<HTML>
<head>
<title> Title of document </title>
<meta tags go here
<link tags go here
<style>
CSS goes here
</style>
<script>
JavaScript goes here
</script>
</head>
<body>
<nav>
<navbar>
</navbar>
</nav>
fill in with code <article>
</article>
<aside>
</aside>
<footer>
</footer>
</body>
</HTML>