HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> table, th, td{ border: 1px solid #8c8c8c; border-collapse: collapse; } </style> </head> <body> <table> <tr> <th colspan="2">Students Attendance</th> </tr> <tr> <td>Male</td> <td>28</td> </tr> <tr> <td>Female</td> <td>30</td> </tr> </table> </body> </html>
OUTPUT
×

Save as Private