Creating simple a nav bar in HTML using Table
Introduction to Nav: Img: Horizontal Nav bar Img: Vertical Navbar Nav is the menu or the list of webpage in a website. We can visit from one page to other easily using the nav of the webpage. The simple nav bar is shown below.. Home Services Contact About So above was a example to a simple horizontal navbar using CSS and HTML. As this is a tutorial for beginner, I am not gonna teach how to design a similar navbar, but if you want to add the similar nav to your page, here's the code.. <div style="background: green; color: white; height: auto; padding: 10px; width: 100%;"> <a href="" style="color: white;">Home</a> <a href="" style="color: white;">Services</a> <a href="" style="color: white;">Contact</a> <a href="" style="color: white;">About<...