How to Quickly Make a Table for WordPad
Start a new WordPad document., Add the table tags., Add the first row to your table., Add the table headings to the first row., Add another row beneath the headers., Continue adding rows., Click File and select "Save as.", Select "Text" from the...
Step-by-Step Guide
-
Step 1: Start a new WordPad document.
You can use WordPad to create a table in HTML that can be open and displayed in any web browser. -
Step 2: Add the table tags.
These are the tags that your table code will be enclosed in. <table> </table>
This will be the header row for your table. <table> <tr> </tr> </table>
Use the table heading tags to add as many columns as you would like. <table> <tr> <th>Column 1</th> <th>Column 2</th> <th>Column 3</th> <th>Column 4</th> </tr> </table>
Now that you have your column headings, you can add your first row of data. <table> <tr> <th>Column 1</th> <th>Column 2</th> <th>Column 3</th> <th>Column 4</th> </tr> <tr> <td>Data 1</td> <td>Data 2</td> <td>Data 3</td> <td>Data 4</td> </tr> </table>
You can use the tags to continue adding rows of data to your table.
Make sure that you close each one with a tag. <table> <tr> <th>Column 1</th> <th>Column 2</th> <th>Column 3</th> <th>Column 4</th> </tr> <tr> <td>Data 1</td> <td>Data 2</td> <td>Data 3</td> <td>Data 4</td> </tr> <tr> <td>Data 5</td> <td>Data 6</td> <td>Data 7</td> <td>Data 8</td> </tr> </table>
This will allow you to save the document as an HTML file.
It needs to be in HTML format so that you can see the table when you load it in a web browser. , This lets you change the extension. , This will change the format to HTML format. , You can now name and save the file as whatever you'd like.
Make sure that it has the .html extension. , Double-click the newly-created HTML file to load it in your default web browser.
Your table will appear in the browser window. -
Step 3: Add the first row to your table.
-
Step 4: Add the table headings to the first row.
-
Step 5: Add another row beneath the headers.
-
Step 6: Continue adding rows.
-
Step 7: Click File and select "Save as."
-
Step 8: Select "Text" from the "Save as type" menu.
-
Step 9: Change the extension at the end of the file name to .html.
-
Step 10: Save the file.
-
Step 11: Open the file in a web browser.
Detailed Guide
You can use WordPad to create a table in HTML that can be open and displayed in any web browser.
These are the tags that your table code will be enclosed in. <table> </table>
This will be the header row for your table. <table> <tr> </tr> </table>
Use the table heading tags to add as many columns as you would like. <table> <tr> <th>Column 1</th> <th>Column 2</th> <th>Column 3</th> <th>Column 4</th> </tr> </table>
Now that you have your column headings, you can add your first row of data. <table> <tr> <th>Column 1</th> <th>Column 2</th> <th>Column 3</th> <th>Column 4</th> </tr> <tr> <td>Data 1</td> <td>Data 2</td> <td>Data 3</td> <td>Data 4</td> </tr> </table>
You can use the tags to continue adding rows of data to your table.
Make sure that you close each one with a tag. <table> <tr> <th>Column 1</th> <th>Column 2</th> <th>Column 3</th> <th>Column 4</th> </tr> <tr> <td>Data 1</td> <td>Data 2</td> <td>Data 3</td> <td>Data 4</td> </tr> <tr> <td>Data 5</td> <td>Data 6</td> <td>Data 7</td> <td>Data 8</td> </tr> </table>
This will allow you to save the document as an HTML file.
It needs to be in HTML format so that you can see the table when you load it in a web browser. , This lets you change the extension. , This will change the format to HTML format. , You can now name and save the file as whatever you'd like.
Make sure that it has the .html extension. , Double-click the newly-created HTML file to load it in your default web browser.
Your table will appear in the browser window.
About the Author
Victoria Fisher
Victoria Fisher specializes in arts and creative design and has been creating helpful content for over 20 years. Victoria is committed to helping readers learn new skills and improve their lives.
Rate This Guide
How helpful was this guide? Click to rate: