Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

table title html

<!--There are 2 ways to make a table title. Number 1:-->
<table>
<tr>
<!--Make a column with random symbols like ------ in it(it has to be as long as the title), then at the first row enter your table title as a table heading.-->
<th>My Favorite Kittens</th>
<!--Add any other table headings if necessary.-->
</tr>
<tr>
<td>-------------------</td>
<td>My example kitten</td>
</tr>
</table>
<!--Number 2:-->
<!--Simply put a heading above the table. The easiest and somteimes more convinient option.-->
<h3>My Favorite Kittens</h3>
<table>
<tr>
<th>White</th>
</tr>
<tr>
<td>My example kitten</td>
</tr>
</table>
 
PREVIOUS NEXT
Tagged: #table #title #html
ADD COMMENT
Topic
Name
2+6 =