Computer Science, asked by rekhasharma0250, 3 months ago

I. Create a table given below by using HTML tags: 5
Name
English
Maths
Rohit Kumar 34
41
ni​

Answers

Answered by anindyaadhikari13
3

Answer:

This is the required HTML c∅de for the table.

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8"/>

<style>

table {

border-collapse: collapse;

text-align: center;

}

</style>

</head>

<body>

<table border=1 cellpadding=10>

<tr>

<td>Name

<td>English

<td>Maths

</tr>

<tr>

<td>Rohit Kumar

<td>34

<td>41

</tr>

</table>

</body>

</html>

I have added some CSS c∅des to make the table look better. Refer to the attachment for output.

Attachments:
Similar questions