Yesterday we talked about the use of h1, it is used to create a head h = header there is h1 to h5, h5 is the smallest, h1 is the biggest.
Today we are going to talk about paragraphs
<p>Keepup</p>
<html>
<head>
<title>Using paragraph</title>
<p>What ever you want inside here</p>
</head>
</html>
Explanations
<p>Stands for paragraph</p>
Today also we are going to create tables in html
<tr>
<th>
States
</th>
<th>
Capital
</th>
<td>
<th>
States
</th>
<th>
Capital
</th>
</tr>
<tr>
<td>
Abia
</td>
<td>
Umuahia
</td>
<td>
Adamawa
</td>
<td>
Yola
</td>