Best employees

Report a typo

Write the CSS code so that the table looks like in this image:

The table with three columns – firstname, lastname, age

Write HTML and CSS code
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Best employees</title>
</head>
<body>
<table>
<caption>Best employees</caption>
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Oswald</td>
<td>Hensley</td>
<td>32</td>
</tr>
<tr>
<td>Sybil</td>
<td>Wade</td>
<td>27</td>
</tr>
</table>
</body>
</html>
Completed 3 of 5
The caption is hidden
Cells of the table are hidden
___

Create a free account to access the full topic