Prev Demo
HTML5
>
Nav Tag In Html5
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE HTML> <html> <head> <title></title> <meta charset="UTF-8" /> </head> <body> <nav style="background-color:lightblue"> <a href="/" title="Home">Home</a> | <a href="/articles/" title="Articles">Articles</a> | <a href="/forums/" title="Forums">Forums</a> | <a href="/Interview" title="Interview">Interview</a>     (These are the Navigation links) </nav> <hr /> <h1>ASP.NET Articles</h1> <article> <h1>GridView articles</h1> <p>Description of all GridView articles</p> <!-- article footer --> <footer>posted by: Sheo Narayan</footer> </article> <article> <h1>Authentication & Authorization articles</h1> <p>Description of all Authentication & Authorization articles</p> <!-- article footer --> <footer>posted by: Sheo Narayan</footer> </article> <!-- website footer --> <footer> <a href="/contactus.aspx">Contact us</a> | <a href="/aboutus.aspx">About us</a> | </footer> </body> </html>
Note: We DO NOT save your trial code in our database.
Output