This is tables.css; download it.
table, th, td
{    
    border: solid 1px black;    
    border-collapse:collapse;
}
table
{    
    margin-left:auto;    
    margin-right:auto;
}
th, td
{    
    padding:.5em;
}
th
{    
    background-color:#FFFF00;
}
This HTML page has the style file tables.css
linked in.  Download both files and save the
in the same folder.
<!doctype HTML>
<html lang="en">
<head>
    <title>PUT TITLE HERE</title>
    <meta charset="utf-8"/>
    <link rel="stylesheet" href="tables.css"/>
</head>
<body>
    <h1>PUT PAGE HEADING HERE</h1>
</body>
</html>
You will reproduce this page
        