Computer Science, asked by madhavjatt5pbqmbr, 7 months ago

Write html code to show following output –                                 3 marks


Name

Subject

Marks

Ayush

Hindi

71

Mohit

English

87​

Attachments:

Answers

Answered by Keshavs100605
1

Answer:

<html>

<body>

<table>

<tr><th>name</th><th>subject</th><th>marks</th></tr>

<tr><td>Ayush</td><td>Hindi</td><td>71</td></tr>

<tr><td>Mohit</td><td>English</td><td>87</td></tr>

</table>

</body>

</html>

Explanation:

Similar questions