The <div> element is used as a container for other HTML elements.
The <div> element is by default a block element, meaning that it takes all available width, and comes with line breaks before and after.
The <div> element is often used to group sections of a web page together.
<div>
<h2>London</h2>
<p>London is the capital city of England.</p>
<p>London has over 13 million inhabitants.</p>
</div>
You can have many <div> containers on the same page.
<div>
<h2>Patna</h2>
<p>London is the capital city of Bihar.</p>
<p>Patna has many ritualistic places.</p>
</div>
<div>
<h2>Delhi</h2>
<p>Delhi is the capital city of India.</p>
<p>Delhi is the metro city.</p>
</div>
<div>
<h2>Aurangabad</h2>
<p>Aurangabad city available in Bihar State.</p>
<p>Deo Temple is avaiable in aurangabad city. It is very famous temple of God SUN</p>
</div>