PLACE TWO DIV SIDE BY SIDE
Run
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>
<style>
	.row {
	  display: table-row; 
	}
	.col {
	  display: table-cell; 
	  padding: 1em;
	  border: 2px solid blue;
	  
	}	
</style>
</head>
<body>
    <h2> Align two div side by side </h2>
    <div class="row">
	  <div class="col">Here we have placed two div side by side with equal height</div>
	  <div class="col">Here we have placed two div side by side with equal 
	  </div>
    </div>

</body>
</html>