Web Design
Create an HTML document that will include a CSS in order to build a table like the following:
Your style sheet should define all the borders of cells, table headers, table to be grey. Also the background of the table header to be black and the text white.
html>
<head>
<style type="text/css">
table, td, th
{
border:1px solid grey;
}
th
{
background-color:black;
color:white;
}
</style>
</head>
<body>
<table>
<tr>
<th>Firstname</th> <th>Lastname</th>
<th>Savings</th>
</tr>
<tr>
<td>Peter</td><td>
</tr>
<tr>
<td>Lois</td><td>
</tr>
<tr>
<td>Joe</td><td>Swanson</td><td>£300</td>
</tr>
<tr>
<td>
</tr>
</table>
</body>
</html>
Post a Comment
0 Comments
Keyword Enter Here