运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <title>Magically Delicious Cupcakes</title> <style> body { background-color: #f8f1f1; font-family: Arial, sans-serif; } h1, h2 { color: #ff85a2; } .container { width: 80%; margin: auto; } .images { display: flex; justify-content: space-between; margin-top: 20px; } .images img { width: 30%; border-radius: 10px; } </style> </head> <body> <div class="container"> <h1>Welcome to Magically Delicious Cupcakes!</h1> <p>We provide a variety of gourmet cupcakes with magical flavors that take you to a world of deliciousness. We believe in quality, taste, and a sprinkle of magic in every cupcake!</p> <h2>Our Delicious Creations</h2> <div class="images"> <img src="img_cupcake1.png" alt="Cupcake 1"> <img src="img_cupcake2.png" alt="Cupcake 2"> <img src="img_cupcake3.png" alt="Cupcake 3"> </div> <h2>Contact Us</h2> <p>For orders and inquiries:</p> <p>Name: Genevieve Lavorre</p> <p>Email: <a href="mailto:lavorre@tmn.com">lavorre@tmn.com</a></p> </div> </body> </html>