Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<style>
table, td, th {
  border: 1px solid black;
}
table {
  width: 100%;
  border-collapse: collapse;
}
</style>
</head>
<body>
<h2>Границы будут свёрнуты</h2>
<table>
  <tr>
    <th>Имя</th>
    <th>Фамилия</th>
  </tr>
  <tr>
    <td>Володька</td>
    <td>Зеленский</td>
  </tr>
  <tr>
    <td>Васька</td>
    <td>Голобородько</td>
  </tr>
</table>
</body>
</html>