We've already added the webpage structure and a few styles inside style.css. Let's work on those final touches!

<html>
<head>
<style>
body { text-align: center; } h2 { background-color: aliceBlue; } img { background-color: lightBlue; width: 100px; } button { background-color: darkCyan; color:white; } p { background-color: aliceBlue; }
</style>
</head>
<body>
<h2>Fast Furniture</h2>
<div>
<img src="https://mimo.app/i/minimalist_living_room.png">
<img src="https://mimo.app/i/modern_living_room.png">
<img src="https://mimo.app/i/cozy_living_room.png">
</div>
<button>Open Catalogue</button>
<p>All furniture made for fast shipping and easy assembly!</p>
</body>
</html>]]>