Html tables?
Hi I need another HTML table for my website.
I need it so that where each heading is, it is a row or a link
|quick links______________________
|
Photo Gallery | Home Delivery
Obituaries | Blogs
Crosswords | Classifieds
Horoscopes | Tourism
TV Listings | Shopping
Public Comments
- <table border="1"> <tr> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </tr> <tr> <td>row 2, cell 1</td> <td>row 2, cell 2</td> </tr> </table>
- Why don't you look up an online table generator?
- Find a website where they display similar heading and then right click it an select View Source. Using tables is now largely deprecated so check CSS tutorials on how to write the code for a table style listing.
- Well, here's your table headers. You can edit the border as you like. <TABLE BORDER=2> <CAPTION ALIGN=TOP>Quick Links</CAPTION> <TR> <TH>Photo Gallery</TH> <TH>Home Delivery</TH> <TH>Obituaries</TH> <TH>Blogs</TH> <TH>Crosswords</TH> <TH>Classifieds</TH> <TH>Horoscopes</TH> <TH>Tourism</TH> <TH>TV Listings</TH> <TH>Shopping</TH> </TR> </TABLE> You can make tables pretty easily here http://www.bagism.com/tablemaker/ Just put in you table info. If you're new to HTML you shouldn't really be learning tables anyway, they suck. Try replacing them with CSS, might take a bit of getting your head around but http://www.w3.org/TR/REC-CSS2/tables.html
Powered by Yahoo! Answers