Home :: Learning HTML :: Tables :: Example Table
| October 7 - 11 | |||||
|---|---|---|---|---|---|
| Monday | Tuesday | Wednesday | Thursday | Friday | |
| Meat | Chicken | Hamburger | Hot Dogs | Turkey | Pepperoni |
| Potatoes | Mashed | Tater Tots | French Fries | Hash browns | None |
| Vegetable | Green Beans | Corn | Peas | Lima Beans | Carrot sticks |
| Dessert | Pudding | Sherbert | Cake | Pudding Pops | Chocolate Mousse |
<DIV ALIGN="CENTER"> <TABLE BORDER="1"> <CAPTION ALIGN="BOTTOM">Lunch</CAPTION> <TR> <TD ROWSPAN="2"> </TD> <TH COLSPAN="5">October 7 - 11</TH> </TR> <TR> <TH>Monday</TH> <TH>Tuesday</TH> <TH>Wednesday</TH> <TH>Thursday</TH> <TH>Friday</TH> </TR> <TR ALIGN="CENTER"> <TH>Meat</TH> <TD>Chicken</TD> <TD>Hamburger</TD> <TD>Hot Dogs</TD> <TD>Turkey</TD> <TD>Pepperoni</TD> </TR> <TR ALIGN="CENTER"> <TH>Potatoes</TH> <TD>Mashed</TD> <TD>Tater Tots</TD> <TD>French Fries</TD> <TD>Hash browns</TD> <TD>None</TD> </TR> <TR ALIGN="CENTER"> <TH>Vegetable</TH> <TD>Green Beans</TD> <TD>Corn</TD> <TD>Peas</TD> <TD>Lima Beans</TD> <TD>Carrot sticks</TD> </TR> <TR ALIGN="CENTER"> <TH>Dessert</TH> <TD>Pudding</TD> <TD>Sherbert</TD> <TD>Cake</TD> <TD>Pudding Pops</TD> <TD>Chocolate Mousse</TD> </TR> </TABLE> </DIV>
You may have noticed the code " " in the first row. This is a Special Character Entity, which stands for a space (remember, HTML doesn't handle spaces too well).
Previous: Table Elements
Next: Table Quiz
Home:: Learning HTML :: Tables :: Example Table
Home |
Policies |
HTML |
FAQ
Publishing |
Booklet |
Tools |
Links