HTML Tables
<!DOCTYPE html> <html> <body> <style> table, th, td { border: 1px solid #999; } table { border-collapse: collapse; } </style> <table> <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>