Posts

Showing posts from June, 2026
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>A Sweet Surprise 🍫</title> <style> body{ margin:0; font-family:Arial,sans-serif; background:linear-gradient(135deg,#ff9a9e,#fad0c4); display:flex; justify-content:center; align-items:center; height:100vh; text-align:center; overflow:hidden; } .card{ background:white; padding:30px; border-radius:20px; box-shadow:0 10px 30px rgba(0,0,0,.2); max-width:350px; } button{ background:#ff4d6d; color:white; border:none; padding:12px 25px; border-radius:30px; font-size:18px; cursor:pointer; margin-top:20px; } #secret{ display:none; margin-top:20px; font-size:20px; color:#d63384; font-weight:bold; animation:fade 1.5s; } @keyframes fade{ from{opacity:0;transform:scale(.8);} to{opacity:1;transform:scale(1);} } .heart{ position:absolute; color:red; font-size:25px; animation:...