Let's style a travel website to practice our skills in creating background gradients.

<html><head><style>h3{height: 40px; padding: 15px; border-radius: 8px; background: linear-gradient(aliceblue, white);} img {height: 300px; padding: 20px; border-radius: 8px; background: linear-gradient(90deg, bisque, white, bisque);} body {text-align: center; background: linear-gradient(45deg, lightblue, white, white);} </style> </head> <body> <h3>Vacation Marketplace</h3> <img src="https://mimo.app/i/clear-water-beach.png"> <p> <em>Book with us to exchange old memories for new ones!</em> </p> </body> </html>]]>