BLOCK
Run
<!DOCTYPE html>
<html>
<head>
	<title>Inline Block</title>
	<style>
		div {
			display: inline-block;
			color: black;
			font-size: 18px;
			height: 150px;
			width: 200px;
			text-align: center;
		}
		
	</style>
</head>
<body>
<div style="background-color: #6ddef7;">Box 1</div>
<div style="background-color: #8bf7e3;">Box 2</div>
<div style="background-color: #719deb;">Box 3</div>

</body>
</html>