Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
frontend
html
examples
tables
0916table_td_colspan.html
0916table_td_colspan.html
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Table TD colspan</title> </head> <body bgcolor="#A3EBA6"> <b>colspan</b> <br><br><br> <table width="600" height="300" border="1"> <tr> <td colspan="2">colspan="2"</td> <td>1.2</td> </tr> <tr> <td>2.1</td> <td>2.2</td> <td>2.3</td> </tr> </table> </body> </html>
Reload page
Preview
W3C validation
Edit Code