How do you make a data table online?
Answer
You can go to this link: http://www.bagism.com/tablemaker/
Just fill in you settings and submit! Then you can highlight, copy and paste the table into your document and print it. Hope I helped.
HTML Answer
In HTML, to create a table, use something like this. (border added for clarity)
<html>
<table border="1">
<tr>
<td>Row 1 Column 1</td>
<td>Row 1 Column 2</td>
</tr>
<tr>
<td>Row 2 Column 1</td>
<td>Row 2 Column 2</td>
</tr>
<tr>
<td>Row 3 Column 1</td>
<td>Row 3 Column 2</td>
</tr>
</table>
</html>
The <table> tag defines the table, and ends with </table>. The <tr> tag defines a row. Table data is tagged with <td>.
The How do you make a data table online? information post by website user , webSITE not guarantee correctness ,
More Questions and Answers...
