Explanation: Used to create table.
Example:
<table border="1"> <tr> <th>Name</th> <th>Marks</th> </tr> <tr> <td>Shlok</td> <td>90</td> </tr> </table>
Output:
| Name | Marks |
|---|---|
| Shlok | 90 |
Explanation: Defines row in table.
Explanation: Defines data cell.
Explanation: Defines header cell.
Explanation: Used to create form.
Example:
Explanation: Used to take user input.
Example: