Sunday 18 August 2019

To make Div appear in same line

Add this property to div
.city{

float : left;

margin:5px;

padding:15px;

width:300px;

height:300px;

border:1px solid black;

}
Now go to the line where you div is and add this class like this
<div class=city> this is my div </div>