![]() |
Start Your Page With A Heading |
![]() |
|
|| Tidy Up || Finished || Mixed Up || NATSAM'S SITE || |
|
5th September, 2002 |
Put the HEADING in a TABLEWe now have a SKELETON We have given it COLOR We have given it a BOOK Perhaps we should put a BOX =<table> at the top of the web page to give it a HEADING <h1> to tell the visitors what the page is about. You put the BOX <table> after the BODY. You can give the BOX a BORDER to make it look better, and this goes into the TABLE:- <table border="2"> and you can also give the border some color:- <table border="2" bordercolor="green"> You type the words for the HEADING between the two TAGS <h1> and </h1> and these go between the TAGS <td> and </td> of the BOX. The page with the HEADING now looks like THIS <html> <head> <title> This Is The Website Of Natsam </title> </head> <body> <center> <table width="500" border="2" bordercolor="green"> <tr> <td> <h1> <center> blah blah blah blahhh </center> </h1> </td> </tr> </table> <table width="500"> <tr> <td> Here you put in all your news and pictures. </td> </tr> </table> </center> </body> </html> .
|
|
|| Tidy Up || Finished || Mixed Up || NATSAM'S SITE || |