How to Create Navigation Links using HTML5 ? Last Updated : 14 Jul, 2020 Comments Improve Suggest changes Like Article Like Report In this article, we create a navigation link by using the <nav> tag in the document. The nav element represents a section of the page whose purpose is to provide navigational links, either in the current document or to other documents. The links in the "nav" element may point to other webpages or to different sections of the same webpage. It is a semantic element. Common examples of the "nav" elements are menus, tables, contents, and indexes. Syntax: <nav> Links... </nav> Example: html <!DOCTYPE html> <html> <head> <title> How to create navigation links using HTML5 ? </title> <style> .gfg { font-size: 40px; color: #090; font-weight: bold; text-align: center; } .nav_tag { text-align: center; margin: 30px 0; font-size: 35px; } </style> </head> <body> <div class="gfg"> GeeksforGeeks </div> <div class="nav_tag"> How to create navigation links using HTML5 ? </div> <nav> <a href="#">C++</a> | <a href="#">Java</a> | <a href="#">PHP</a> | <a href="#">Data Structure</a> | <a href="#">Algorithm</a> </nav> </body> </html> Output: Supported Browsers are listed below: Google Chrome Internet Explorer Firefox Apple Safari Opera Comment More infoAdvertise with us Next Article How to Create Navigation Links using HTML5 ? M manaschhabra2 Follow Improve Article Tags : Web Technologies HTML HTML5 HTML-Questions Similar Reads How to create navigation bar using <div> tag in HTML ? In this article, we will know to create the navigation bar using the <div> tag in HTML. The Navbar is a navigation header that contains the links to navigate to the different pages or sections of the site that helps to make the website interactive. The navbar is an important & fundamental 3 min read How to Create Navigable Tabs in HTML Navigable tabs in HTML are interactive elements that allow users to switch between different content sections without reloading the page. Tabs organize content into panels, and users can navigate between them by clicking the tab headers, enhancing user experience through better content management.He 2 min read How to create Vertical Navigation Bar using HTML and CSS ? After reading this article, you will be able to build your own vertical navigation bar. To follow this article you only need some basic understanding of HTML and CSS. Let us start writing our vertical navigation bar, first, we will write the structure of the navigation bar. In this tutorial, we crea 3 min read How to create Right Aligned Menu Links using HTML and CSS ? The right-aligned menu links are used on many websites. Like hotels website that contains lots of options in the menu section but in case of emergency to make contact with them need specific attention. In that case, you can put all the menu options on the left side of the navigation bar and display 3 min read How to Create a Hyperlink in HTML? If we want to navigate from one page to another then Hyperlink comes into play. It provides you the link to navigate to another page, on hovering that link the cursor turns into a little hand. Hyperlink enables us to connect one page to another, navigate to specific sections, or even open applicatio 2 min read Like