Pricing
Learn
Code
Deploy
More
how to create table in html
103
A table is created using the <table>, <tr>, <th>, and <td> tags.
(give the code for creating it)
1 Answer
8 months ago by
senpie956
<table> <tr> <th>Header 1</th> <th>Header 2</th> </tr> <tr> <td>Row 1, Col 1</td> <td>Row 1, Col 2</td> </tr> </table>
8 months ago by
senpie956