| Frames |
What are Frames?
|
When Should You Use Frames?
|
|
Frames are best used when you want to divide the browser window into 2 or at most 3 separate sections |
HTML Coding for Frames
Note: the <frameset> and </frameset> tags go between the </head> and <body> tags
|
Clicking on a Hyperlink in one panel and
opening the content
in another panel
|
Dealing With Browsers That Can't Display
Frames
|
| Additional Resources
for Frames and Inline Frames: |
| Fix
Your Site With the Right DOCTYPE! by Jeffrey Zeldman (http://www.alistapart.com/articles/doctype/) You’ve done all the right stuff, but your site doesn’t look or work as it should in the latest browsers. You’ve
written valid XHTML and CSS. You’ve used the W3C standard Document
Object Model (DOM) to manipulate dynamic page elements. Yet, in
browsers designed to support these very standards, your site is
failing. A faulty DOCTYPE is likely to blame. According to HTML standards, each HTML document requires a
document type declaration. The "DOCTYPE" begins the HTML document and
tells a validator which version of HTML to use in checking the
document's syntax. DOCTYPES THAT WORKSo what DOCTYPEs should we use? The following complete DOCTYPEs are the ones we need: HTML 4.01 Strict, Transitional, Frameset<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" XHTML 1.0 Strict, Transitional, Frameset<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" XHTML 1.1 DTD<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" |
Some Additional Links About DOCTYPES:
|
|
|
|
|
|
|
|
|
|
|