Writ an HTML program with a table with the names of children, their date of birth and addresses (5).Apply blue as the background color of the table
Answers
Answered by
1
<html>
<head>
<style>
body {background-color: blue;}
</style>
</head>
<body>
<table>
<tr>
<th>Name of Children</th>
<th>D.O.B</th>
<th>Address</th>
</tr>
<tr>
<td><input type = "text">
<td><input type = "date">
<td><input type = "text">
</tr>
</table>
</body>
</html>
Similar questions