Code
Execute
<!DOCTYPE html> <html> <head> <title>html tutorial - html5 - html code - html form - In 30Sec by Microsoft Award MVP - | wikitechy span attribute</title> </head> <body> <table border=1> <colgroup> <col span="2" style="background-color: red"> <col style="background-color: green"> </colgroup> <tr> <th>FName</th> <th>LName</th> <th>E-mail</th> </tr> <tr> <td>Wikitechy</td> <td>tutorials</td> <td>support@wikitechy.com<td> </tr> <tr> <td>HTML</td> <td>tutorials</td> <td>learn@wikitechy.com<td> </tr> </table> </body> </html>
Result