youlilsheshe
11-24-2003, 07:33 PM
I want a lil tool table thing like at the top of this page with links to the rest of the site. How do i do that with ONLY html?????:confused:
|
Click to See Complete Forum and Search --> : A tool table? Like At the top of this page? Help? youlilsheshe 11-24-2003, 07:33 PM I want a lil tool table thing like at the top of this page with links to the rest of the site. How do i do that with ONLY html?????:confused: Paul Jr 11-24-2003, 07:45 PM This is just bare-bones... <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html><head><title>Example!</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <table cellspacing="0" cellpadding="2" border="1" bordercolor="#000" width="95%" align="center" bgcolor="#A3A3A3"> <tr align="center"> <td><a href="#">Home</a></td> <td><a href="#">About</a></td> <td><a href="#">Links</a></td> <td><a href="#">Gallery</a></td><td><a href="#">Contact</a></td> </tr> </table> </body> </html> webdeveloper.com
Copyright Internet.com Inc., All Rights Reserved. |