Cool Memo - 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>Cool Memo</title> <link rel="stylesheet" href="styles.css"> </head> <body> <div class="pin-note cool-memo" id="coolMemo"> <div class="pin"></div> <button class="close-btn" onclick="closeNote()">✖️</button> <div class="note-title">Cool Memo</div> <div class="note-content"> Keep your thoughts cool and organized with this memo note. Stay sharp and stylish! </div> <div class="icon">🧊</div> <a href="#" class="button">Learn More</a> </div> <script> function closeNote() { document.getElementById('coolMemo').style.display = 'none'; } </script> </body> </html>