运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <title>Magically Delicious Cupcakes</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 20px; } h1 { text-align: center; } .description { text-align: center; margin-bottom: 30px; } .contact-details { text-align: center; margin-top: 30px; } .contact-details p { margin: 10px 0; } .image-gallery { display: flex; flex-wrap: wrap; justify-content: center; } .image-gallery img { width: 250px; margin: 10px; } </style> </head> <body> <h1>Welcome to Magically Delicious Cupcakes!</h1> <div class="description"> <p>Indulge in the enchantment of our delectable cupcakes.</p> <p>We offer a wide variety of flavors and designs to satisfy your sweet tooth and bring magic to your taste buds.</p> </div> <div class="image-gallery"> <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> <div class="contact-details"> <p>Contact us for orders or inquiries:</p> <p>Name: Genevieve Lavorre</p> <p>Email: <a href="mailto:lavorre@tmn.com">lavorre@tmn.com</a></p> </div> </body> </html>