• map-iconQatar
  • email-iconinfo@sugaiinstitute.com

YouTube : Sugai Institute

How to create Navigation Bar in HTML

How to create Navigation Bar in HTML

  • Teacher
    Teacher
    Gayathri Sudhakar
  • Category
    css
  • Views

How to create Menu Bar/ Navigation Bar


Navigation Bar contain links for the other page of the website. It plays an important role in website. It is represented as a horizontal bar in the top of the website. It helps the users to locate the other pages in the website.
In our example program we created menu bar by using anchor tag.
In the style section we mentioned "overflow:hidden" for div. Overflow is used when an element inside the block is too big to fit.
You can also change the background of the each menu when moving cursor on it. For that we used "hover" in style section.


Note:Watch our video for detailed explanation in Tamil

How to create menu bar in HTML -Example Program

(Use Ctrl+c to copy this coding)

<html>
<head>
<title>Navigation Bar</title>
<style>
body
{
margin:0;
}
.nav
{
overflow:hidden;
background-color:red;
}
a
{
float:left;
text-decoration:none;
font-size:20px;
padding:20px 25px;
}
a.active
{
background-color:yellow;
color:black;
}
a:hover
{
background-color:green;
color:white;
}
</style>
</head>
<body>
<div class="nav">
<a class="active" href="https://www.google.com">Home</a>
<a href="">About Us</a>
<a href="">Services</a>
<a href="">Contact Us</a>
</div>
</body>
</html>


Click output to view the output of the coding

Reviews
  • Reviews
    S. Krishnan
    11-10-2022 12:52:47

    Html and css use panni oru web page kudhuga naaga create panni paakurom.... And... Edupi mam... Vertical line poodhuradhu... And thank you mam...

  • Reviews
    REVATHY babu
    26-05-2022 16:26:39

    very useful for me .Teaching is marvellous.

  • Reviews
    Tamilarasan D
    27-07-2021 19:22:31

    Thank you for spending time share your knowlege so good.

Leave A Comment

Other Playlist

  • HTML : 7 Classes
  • CSS : 8 Classes
  • HTML Questions : 2 Videos
Free Courses Watch Now