<html>
<head>
<style>
table {
border-collapse: collapse;
}
th {
width: 3em;
padding: 0.6em;
background: lightgray;
color: darkslategray;
font-size: 0.6em;
}
td {
width: 3em;
padding: 0.6em;
display: inline-block;
border: 1px solid lightgray;
text-align: center;
}
</style>
</head>
<body>
<table>
<script>
for (i=0; i<80000; i++) {
document.write('<tr><th>&#' + i + ';</th><td> ' + i + '; </td></tr>');
}
</script>
</table>
</body>
</html>
✋