Fun with frames: Design a framed site
Takeaway: Find out how best to design a framed site.
By Paul Anderson(updated 5/20/99) Many modern site-management tools help you subdivide the pages that correspond to a particular frame, and help keep the link targets current. But even if you're maintaining your site by hand, it's easy to keep a framed site manageable, navigable, and accessible to visitors not using frames.
With common menu-and-content framesets, it often makes sense to split the navigation between the two frames. The main navigation menu in one frame loads a subindex page in another; each subindex targets itself, links to the other subindexes, and links to subpages that, in turn, link back to it. This way the only targeted links are in the menu frame.
This approach also lets you create navigation for browsers without frame support. Because frameset pages don't require a <BODY> element, frame-
<HTML><HEAD>
<TITLE>Welcome to my site!</TITLE>
</HEAD>
<FRAMESET cols="150,*">
<FRAME name="menu" src="menu.html">
<FRAME name="content" src="intro.html">
</FRAMESET>
<BODY>
Welcome to my site.<P>
<A href="intro.html">Introduction</A>
<A href="products.html">Products</A>
<A href="reviews.html">Reviews</A>
</BODY></HTML>
For the framed pages, the HTML 4.0 specification provides a <NOFRAMES> element to encase content that frame-
SponsoredWhite Papers, Webcasts, and Downloads
- TechRepublic SolutionBase: Expanding storage options with Windows Storage Server TechRepublic
- Advances in Data Warehouse Performance: I/O Elimination in DB2 IBM
- Microsoft SQL Server 2005: Deployment and Tests in an iSCSI SAN Dell EqualLogic
- SprintSecure Message Protection Fact Sheet Sprint
- Demo: Need Disk Space? IBM DB2 9 Compression Demo IBM
Article Categories
- Security
- Security Solutions, IT Locksmith
- Networking and Communications
- E-mail Administration NetNote, Cisco Routers and Switches
- CIO and IT Management
- Project Management, CIO Issues, Strategies that Scale
- Desktops, Laptops & OS
- Windows 2000 Professional, Microsoft Word, Microsoft Excel, Microsoft Access, Windows XP,
- Data Management
- Oracle, SQL Server
- Servers
- Windows NT, Linux NetNote, Windows Server 2003
- Career Development
- Geek Trivia
- Software/Web Development
- Web Development Zone, Visual Basic, .NET


