Search w3schools.com:

SHARE THIS PAGE

ASP Classic - Adding Navigation


Learn ASP Classic by building a web site from scratch.

Part VI: Adding a Navigation Menu.


What We Will Do

In this chapter we will:

  • Add a navigation menu

Add a Navigation Menu

Create a new file named Header.inc.

Put the following code inside the file:

Header.inc

<ul id="menu">
<li><a href="Default.asp">Home</a></li>
<li><a href="Customers.asp">Data</a></li>
<li><a href="Register.asp">Register</a></li>
<li><a href="Login.asp">Login</a></li>
<li><a href="About.asp">About</a></li>
</ul>


Edit The Style Sheet

Edit your your style sheet (Site.css):

Put the following (red marked) code inside the file:

Site.css

body
{
font: "Trebuchet MS", Verdana, sans-serif;
background-color: #5c87b2;
color: #696969;
}

#main
{
padding: 20px;
background-color: #ffffff;
border-radius: 0 4px 4px 4px;
}

h1
{
font: Georgia, serif;
border-bottom: 3px solid #cc9900;
color: #996600;
}

ul#menu
{
padding: 0px;
position: relative;
margin: 0;
}

ul#menu li
{
display: inline;
}

ul#menu li a
{
background-color: #ffffff;
padding: 10px 20px;
text-decoration: none;
line-height: 2.8em;
color: #034af3;
border-radius: 4px 4px 0 0;
}

ul#menu li a:hover
{
background-color: #e8eef4;
}

Run example »

The style sheet above, is a copy of the style sheet from the previous chapter, with added styles for an unordered list (marked red).


Congratulations

You have added navigation to your website.




W3Schools Certification

W3Schools' Online Certification

The perfect solution for professionals who need to balance work, family, and career building.

More than 10 000 certificates already issued!

Get Your Certificate »

The HTML Certificate documents your knowledge of HTML.

The HTML5 Certificate documents your knowledge of advanced HTML5.

The CSS Certificate documents your knowledge of advanced CSS.

The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.

The jQuery Certificate documents your knowledge of jQuery.

The XML Certificate documents your knowledge of XML, XML DOM and XSLT.

The ASP Certificate documents your knowledge of ASP, SQL, and ADO.

The PHP Certificate documents your knowledge of PHP and SQL (MySQL).

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]