<html>
<head><meta http-equiv="content-security-policy" content="script-src 'none'">
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<h2>Добавить границу к таблице:</h2>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Peter</td>
<td>Griffin</td>
</tr>
<tr>
<td>Lois</td>
<td>Griffin</td>
</tr>
</table>
</body>
</html>