write the html program coddee for this
Attachments:
Answers
Answered by
2
Answer:
Should be easy enough..
Explanation:
<!DOCTYPE html>
<html>
<head>
<title>Mark List</title>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 5px;
}
th {
text-align: left;
}
</style>
</head>
<body bgcolor="green">
<table style="width:100%">
<tr>
<th>Student Name</th>
<th>Computer marks</th>
<th>English Marks</th>
</tr>
<tr>
<td>Alice</td>
<td>87</td>
<td>82</td>
</tr>
<tr>
<td>Rosy</td>
<td>90</td>
<td>87</td>
</tr>
<tr>
<td>Bindu</td>
<td>87</td>
<td>60</td>
</tr>
</table>
</body>
</html>
Please mark me as the brainliest.
Helps a lot.
Answered by
0
its /html
oppp
its goood noice
Similar questions