<html>
<head>
<style type="text/css">
table, td, th
{
border:1px solid green;
}
th
{
background-color:green;
color:white;
}
</style>
</head>
<body>
<table>
<tr>
<th>Имя</th>
<th>Фамилия</th>
<th>Сбережения</th>
</tr>
<tr>
<td>Петр</td>
<td>Иванов</td>
<td>100 руб.</td>
</tr>
<tr>
<td>Василий</td>
<td>Сидоров</td>
<td>150 руб.</td>
</tr>
<tr>
<td>Иван</td>
<td>Первухин</td>
<td>300 руб.</td>
</tr>
<tr>
<td>Илья</td>
<td>Петров</td>
<td>250 руб.</td>
</tr>
</table>
</body>
</html>