I thought I’d ask. When I use the code below in sublime and brackets text editor I am unable to view the code in the browser view. I just get a blank browser. If I try on other text programs such as online text code browsers I get the same results. What am I doing wrong? I’m not sure how to present the code without it printing.
<DOCTYPE html>
<html>
<link rel="stylesheet" href="mystyle.css">
<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>
</tr>
</table>
</style>
</body>
</style>
</body>
</html>