| YOUR GRADED ASSIGNMENT Add to a project page a 5 Cell (or greater) TABLED THUMBNAIL PICTURE GALLERY Get 5 larger images and use a PAINT program to RESIZE AND RENAME these into 5 additional smaller versions called "thumbnails" (A total of 10 pics in all). Shrink (RESIZE) and RENAME with the SAVE AS function (e.g. flower.gif --> flower_sm.gif ). |
TABLES are great for :
| a 2 x 2 table | the code | ||||
|
<table border="1"> <tr> <td>row 1 col 1 </td> <td>row 1 col 2 </td> </tr> <tr> <td>row 2 col 1</td> <td>row 2 col 2 </td> </tr> </table> |
| a 1 x 4 table | the code | ||||
|
<table border="1"> <tr> <td>row 1 col 1</td> </tr> <tr> <td>row 2 col 1</td> </tr> <tr> <td>row 3 col 1</td> </tr> <tr> <td>row 4 col 1</td> </tr> </table> |
| a 3 x 1 table | the code | |||
|
<table border="1"> <tr> <td>row 1 col 1</td> <td>row 1 col 2 </td> <td>row 1 col 3 </td> </tr> </table> |
| This table is 2 columns by 3 rows | This is Column 2 Row 1 |
| This is Column 1 Row 2 | This is Column 2 Row 2 |
| This is Column 1 Row 3 |
The code to make the CRAZY UGLY TABLE above is:
<table border="1" cellpadding="10" cellspacing="5" background="colorwheel.jpg"> |
If you set border="0" then the "window pane" disappears. This can be quite useful to organize
pictures and text next to each other (in adjacent table cells) for the news column effect.
Individual cells can also be merged (spanned).
| spanned row | |||
| 1 | 2 | 3 | spanned column |
| 4 | 5 | 6 | |
| 7 | 8 | 9 | |
<table width="400" border="1" align="center" bordercolor="#FF0000"> |
![]() |
![]() |
| My bud albert | Filo my hero |
| <table border="1"> <tr> <td> <a href="einstein.jpg" target="new"><img src="einstein_sm.jpg" border="0"></a> </td> <td> <a href="farnsworth.jpg" target="new"><img src="farnsworth_sm.jpg" border="0"></a> </td> </tr> <tr> <td>My bud albert </td> <td>Filo my hero </td> </tr> </table> |