Peeper Note - MeggiTools
Run
Toggle Theme
Share Link
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Peeper Note</title> <style> body { font-family: 'Arial', sans-serif; background: linear-gradient(to right, #ece9e6, #ffffff); display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .peeper-note { position: relative; width: 300px; padding: 20px; background: #f9f9f9; border: 2px solid #e0e0e0; border-radius: 10px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); animation: pop-in 0.5s ease-out; transition: transform 0.3s ease; } .peeper-note:hover { transform: scale(1.05); } .peeper-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; font-size: 18px; font-weight: bold; } .peeper-header .icon { font-size: 24px; cursor: pointer; } .peeper-content { font-size: 16px; line-height: 1.5; color: #333; } .peeper-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; } .peeper-footer .emoji { font-size: 20px; cursor: pointer; } .close-btn { position: absolute; top: 10px; right: 10px; background: #ff5f5f; color: #fff; border: none; border-radius: 50%; width: 25px; height: 25px; font-size: 14px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 4px rgba(0,0,0,0.2); transition: background 0.3s ease; } .close-btn:hover { background: #ff3b3b; } @keyframes pop-in { 0% { transform: scale(0); } 100% { transform: scale(1); } } </style> </head> <body> <div class="peeper-note"> <button class="close-btn" onclick="closePeeper()">x</button> <div class="peeper-header"> <span>📝 Peeper Note</span> <span class="icon">📌</span> </div> <div class="peeper-content"> This is a highly styled peeper note with animations, emojis, and icons. Use this note to pin important information. </div> <div class="peeper-footer"> <span class="emoji">👍</span> <span class="emoji">❤️</span> <span class="emoji">🔥</span> </div> </div> <script> function closePeeper() { document.querySelector('.peeper-note').style.display = 'none'; } </script> </body> </html>