create table in html
Answers
Answered by
1
Answer:
Html codings are used to write the table in a website. TD is table data. It is used for writing table content.
PLZ FOLLOW ME AND MARK BRAINLIEST
Answered by
10
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>
</body>
</html>
Similar questions