Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Tabbed webpage???

Status
Not open for further replies.

cdunavent

IS-IT--Management
Aug 26, 2005
18
US
Hey guys...I have a very basic webpage located at What I envision is that at the top of it, are tabs that say Week 2, Week 3, etc. for all the weeks of the NFL Season. Obviously, when you click on a particular tab, I would like to view that week's schedule. I am an HTML rookie, and am using MS Frontpage.

What's the best (and easiest) way to tackle this???

-cd
 
The Simplest way, I think would be with a table. something like:
Code:
<table><tr><td background="tabimage.jpg" width="100" height="50"><a href=week1.html>Week1</a></td><td background="tabimage.jpg" width="100" height="50"><a href=week2.html>Week2</a></td><tdbackground="tabimage.jpg" width="100" height="50"><a href=week3.html>Week3</a></td>
</tr></table>

Just modify the cell dimensions for <td ... width=""> to fit the image you get.

This is a simple solution albeit not a very elegant one.

Hope this helps

----------------------------------
Ignorance is not necessarily Bliss, case in point:
Unknown has caused an Unknown Error on Unknown and must be shutdown to prevent damage to Unknown.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top