Friday, October 17, 2014

Write A program to Display Example Of Nested Table.

Write A program to Display Example Of Nested Table. Code : nested.html <html> <head> <title>nested table</title> <style type ="text\css"> table { border-style:dashed; } </style> </head> <body> <table border ="10" align ="center" bordercolor ="black"> <tr> <td> <table border="20" bordercolor="green"> <tr> <td> <table border="30" bordercolor="blue"> <tr> <td> <table border="40" bordercolor="RED"> <tr> <td>PKM COLLEGE </tr> </table> </tr> </table> </tr> </table> </tr> </table> </body> </html>

No comments: