Untitled
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Will You Be My Valentine?</title> <style> body { font-family: Arial, sans-serif; background-color: #ffcccb; /* Soft pink background */ color: white; text-align: center; padding: 50px; margin: 0; } .message { background-color: #ff69b4; /* Hot pink for the main message box */ padding: 20px; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); } .message h1 { font-size: 2.5em; } .button { background-color: #ff1493; /* Deep pink */ color: white; padding: 15px 30px; font-size: 1.2em; border: none; border-radius: 5px; cursor: pointer; transition: 0.3s; } .button:hover { background-color: #ff77a9; } .heart { font-size: 3em; color: red; } </style> </head> <body> <div class="message"> <h1>Will You Be My Valentine?</h1> <p>I can't think of a better way to ask than with this page!</p> <div class="heart">❤️</div> <button class="button" onclick="window.location.href='mailto:someone@example.com'">Say Yes!</button> </div> </body> </html>
Leave a Comment