维科纳蒂 »
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <head><meta http-equiv="content-security-policy" content="script-src 'none'"> <title>Magically Delicious Cupcakes</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 20px; background-color: #f7f7f7; } h1 { text-align: center; color: #442d6c; font-size: 36px; margin-bottom: 30px; } .description { text-align: center; margin-bottom: 30px; } .description p { font-size: 18px; color: #555555; line-height: 1.5; margin-bottom: 10px; } .contact-details { text-align: center; margin-top: 30px; } .contact-details p { font-size: 16px; color: #555555; margin: 5px 0; } .image-gallery { display: flex; flex-wrap: wrap; justify-content: center; } .image-gallery img { width: 300px; margin: 10px; border-radius: 5px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); } a { color: #442d6c; } a:hover { color: #800080; } </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="../images/img_cupcake1.jpg" alt="Cupcake 1"> <img src="../images/img_cupcake2.jpg" alt="Cupcake 2"> <img src="../images/img_cupcake3.jpg" 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>