DISPLAY
Run
<!DOCTYPE html>
<html>
<head>
	<title>Inline Block</title>
	<style>
		p{
			display: inline;
			height: 120px;
			width: 100px;
			color: white;
			background-color: black;
		}
	</style>
</head>
<body>
<p>Box 1</p>
<p>Box 2</p>
<p>Box 3</p>
</body>
</html>