« Crash guide to HTML. Lesson 9 - Tables, adding rows to »
...
|
<html> <head> <title>Ackadia - Learn HTML - lesson 9 - Links</title> </head> <body background="stone.jpg"> <br /><br /> <center> <br /> <table border="3" bgcolor="white" cellpadding="10" cellspacing="5" width="80%"> <tr> <td> <img src="images/spidersweb.gif" width="75" height="75" alt="Spiders Web" /> </td> <td> You can have any number of cells in a row and any number of rows and a table. These can span rows or columns of even be nested inside each other. Just remember to close cells etc :-) <br /><br /> The <a href="html-tables.php">Tables</a> page gives more examples of this. Again, this is a link to a file in the same directory <br /><br /> Lesson 10 will cover text formating, horizontal lines. <br /><br /> </td></tr></table> </center> </body></html> See this code running in your browser |


