HTML Tables
<!DOCTYPE html> <html> <body> <table> <colgroup> <col style="background:#e5fff5;"> <col> </colgroup> <tr> <th>Name</th> <th>Role</th> </tr> <tr> <td>Asha</td> <td>Designer</td> </tr> <tr> <td>Ravi</td> <td>Developer</td> </tr> </table> </body> </html>