TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html> <body> <h2>Student Scores</h2> <table border="1"> <tr> <th>Name</th> <th>Subject</th> <th>Score</th> </tr> <tr> <td>Alice</td> <td>Math</td> <td>85</td> </tr> <tr> <td>Bob</td> <td>Science</td> <td>90</td> </tr> </table> </body> </html>