table

3
Qus : Create a table using rowspan and columnspan attributes. Sol: <html> <head> <style> table, th, td { border: 1px solid black; border-collapse: collapse; } th, td { font-size:50px; padding:20px; margin:20px; } </style> </head> <title>Table </title> <body> <table> <tr> <td><strong>A</strong></td> <td><strong>B</strong></td> <td><strong>C</strong></td>

Upload: adarshgupta

Post on 30-Sep-2015

212 views

Category:

Documents


0 download

DESCRIPTION

table example

TRANSCRIPT

Qus: Create a table using rowspan and columnspan attributes.Sol:

table, th, td { border: 1px solid black; border-collapse: collapse; } th, td { font-size:50px; padding:20px;margin:20px; } Table A B C D 1 2 3 4 5 6 7 8 9 10 11

OUTPUT: