This site is designed for accessibility. Content is obtainable and functional to any browser or Internet device. This site's full visual experience is available in a graphical browser that supports web standards. Please consider upgrading your web browser.

Example with Alternate and Media Stylesheets

Fire up Netscape 6.2x

Now take a look at this example document.

Alternate Stylesheets

To see the alternate styles in Netscape 6x:
under the "View" menu select "Use style sheet" then select one of the options five listed.

I created five visually distinct alternate stylesheets. If you want to view the stylesheets themselves they are at:

Default Stylesheet

If you want to see the code for the default style sheet is at default.css

Media Stylesheets

The print stylesheet can be viewed in Internet Explorer without printing the page. Under the file menu select print preview.

If you want to see the code it is at:

print.css

I also created an aural style sheet. If you want to see the code it is at:

aural.css

Markup to call all of the Stylesheets

These styles are called in the html example document with the following markup:

<!--
@import "default.css";
-->
</style>

<link rel="alternate stylesheet" type="text/css" media="screen" title="leftnavigation" href="leftnavigation.css">

<link rel="alternate stylesheet" type="text/css" media="screen" title="rightnavigation" href="rightnavigation.css">

<link rel="alternate stylesheet" type="text/css" media="screen" title="warm" href="warm.css">

<link rel="alternate stylesheet" type="text/css" media="screen" title="green" href="green.css">

<link rel="alternate stylesheet" type="text/css" media="screen" title="plain" href="plain.css">

<link rel="stylesheet" type="text/css" media="print" href= "print.css">

<link rel="stylesheet" type="text/css" media="aural" href= "aural.css">