Himesh wants to display the marks obtained in Maths, English, science and computer on the webpage. Suggest him a best suited HTML tag that helps him in completing the task
Answers
Answer:
To display marks obtained in various subjects on a webpage, the most suitable HTML tag to use would be the <table> tag. Within the <table> tag, you can create rows using the <tr> tag, and within each row, you can create cells using the <td> tag. You can also use the <th> tag to create a header row for the table.
Here's an example of how Himesh can use the <table> tag to display marks obtained in Maths, English, Science and Computer:
Explanation:
<!DOCTYPE html>
<html>
<head>
<title>Student Marks</title>
</head>
<body>
<table>
<tr>
<th>Subject</th>
<th>Marks Obtained</th>
</tr>
<tr>
<td>Maths</td>
<td>90</td>
</tr>
<tr>
<td>English</td>
<td>85</td>
</tr>
<tr>
<td>Science</td>
<td>92</td>
</tr>
<tr>
<td>Computer</td>
<td>95</td>
</tr>
</table>
</body>
</html>
Answer:
please mark me brainliest
Explanation:
please mark me brainliest