SCCC Logo

 SCCC Home
 Home
 My SCCC
My SCCC
 Site Map
Site Map
 Contact Us
Contact Us
 Back
Back
 
  County Community College
 
 


    Text Version

Error: Make sure JavaScript is enabled and update to latest version of browser!

 



 Corner Printer Friendly Version

 home | ada office | web page guidelines | manuals | resources | scholarships |
other links | FAQs | web design/development


ADA

A Guide to Web Accessibility
Design and Development

ADA Office


 

 ADA Your guide to web accessibility  Resources: Technological Resources - Interpreter Services - Special Services
webmaster resources

| Web Development | HTML Codes | HTML Tips | Javascript Snippets | 216 Safe Colors | Symbols | CSS |
| Virtual Includes | Bobby | Meta Tags
|

website design


Virtual Includes
 

Virtual includes are useful to help manage a Web site and provide a consistent look from page to page.

Uses for virtual includes are: 

Cascading Style Sheet coding
Page Headers
Page Footers

Examples

Header Include

<Html>
<Head>
<Title>Web Design and Development</Title>
</Head>
<Body>
<!--#include virtual="headeradawebinst.shtml" -->
<HR>
<BR>
<BR>
Above is an example of a HEADER INCLUDE

</Body>
</Html>

View Example 1

 

Footer Include and Header Include 

<Html>
<Head>
<Title>Web Design and Development</Title>
</Head>
<Body>
<!--#include virtual="headeradawebinst.shtml" -->
<HR>
<BR>
<BR>
Above is an example of a HEADER INCLUDE
<BR>
<BR>
Below is an example of a FOOTER INCLUDE

<!--#include virtual="adafooter.shtml"

</Body>
</Html>

VIEW EXAMPLE 2

Back