Create table.html

This commit is contained in:
Joe James
2020-02-17 13:40:22 -06:00
committed by GitHub
parent 1223c220ac
commit 595460b1a0

8
css/table.html Normal file
View File

@@ -0,0 +1,8 @@
<table>
<tr><th>Name</th><th>Age</th></tr>
<tr><td>Scotty</td><td>31</td></tr>
<tr><td>Spock</td><td>37</td></tr>
<tr><td id="boss">Captain Kirk</td><td>39</td></tr>
</table>
<!-- id can be used to define styles for a smaller subset of content -->