HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> table, th, td{ border: 1px solid #8c8c8c; border-collapse: collapse; } </style> </head> <body> <table> <thead align="char" char="."> <tr> <th>Students</th> <th>Cutoff</th> </tr> </thead> <tbody> <tr> <td>Brendan</td> <td>55.5</td> </tr> <tr> <td>Eich</td> <td>63.25</td> </tr> </tbody> </table> <p><strong>Note</strong> : char attribute for &lt;thead> tag is not supported in any of the modern web browser.</p> </body> </html>
OUTPUT
×

Save as Private