Is there a special feature I need to click on to use CSS and HTML together on the Sublime text editor? Or is there something wrong with the code I am attempting to use?
<DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> </title>
<style>
table {
border: 1px black solid;
}
table th {
border: 1px black solid;
}
table td{
border: 1px black solid;
}
</head>
<body>
<table style="border: 1 px black solid;">
<tr>
<th>Player name</th>
<th>shots</th>
<th>points</th>
<th>free throws</th>
<th>Rebounds</th>
<th>Steals</th>
<th>Assists</th>
</tr>
<tr>
<td>jack</td>
<td>95</td>
<td>40</td>
<td>30</td>
<td>20</td>
<td>40</td>
<td>49</td>
</tr>
<tr>
<td>bob</td>
<td>34</td>
<td>32</td>
<td>90</td>
<td>45</td>
<td>12</td>
<td>10</td>
</table>
</body>
</html>