Basic tags of HTML as well as table tags name maxim 20 with uses also
Answers
Explanation:
<table style="width:100%">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
</table>
Answer:
<html> --->it initializes the html
<head> --->it is used to give the heading
<br> ---->it is used to give newline
<h> ---->used to give big heading for webpage
<p> ----->used to give paragraph
<img> --->loads the image in webpage
<tr> ---->table row
<table> ----->create a table
<button> ---->creates a button
<a> --->create a link
<form> --->create a form
<dl> ----->descriptive list
<ol> ------>ordered list
<ul> ----->unordered list
Explanation: