html - Is it okay to put the nav tag outside of the header tag? -
<!doctype html> <html> <head> <meta charset="utf-8"> <title>scarface</title> <link rel="stylesheet" href="normalize/normalize.css"> <link rel="stylesheet" href="css/styles.css"> </head> <body> <div class="wrapper"> <header> <h1>the world yours</h1> </header> <nav> <li><a href="index.html">home</a></li> <li><a href="pictures.html">pictures</a></li> <li><a href="contact.html">contact</a></li> </nav> </div> </body> </html>
is okay if put nav tag outside of header tag? know many people/developers have navigation "wrapped" inside of header tags. thank in advance question.
Comments
Post a Comment