Pastel Chalkboard - 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>Pastel Chalkboard</title> <style> body { margin: 0; padding: 0; background: #f3f3f3; font-family: 'Georgia', serif; display: flex; justify-content: center; align-items: center; height: 100vh; overflow: hidden; } .chalkboard { background: #fcf6f5; border: 15px solid #f5c7b8; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); border-radius: 20px; width: 70%; height: 70%; position: relative; overflow: hidden; padding: 20px; color: #333; font-size: 1.5em; display: flex; flex-direction: column; } .chalkboard:before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: url('https://www.transparenttextures.com/patterns/paper-fibers.png'); opacity: 0.5; } .chalkboard-content { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; overflow: hidden; } .chalkboard-header, .chalkboard-footer { z-index: 2; padding: 10px; background: rgba(255, 255, 255, 0.7); border-radius: 15px; } .chalkboard-body { flex: 1; overflow-y: auto; padding-right: 10px; margin: 10px 0; } .chalkboard-body::-webkit-scrollbar { width: 10px; } .chalkboard-body::-webkit-scrollbar-track { background: #fcf6f5; } .chalkboard-body::-webkit-scrollbar-thumb { background: #f5c7b8; border-radius: 10px; } .chalkboard input[type="text"] { background: transparent; border: none; border-bottom: 2px solid #f5c7b8; color: #333; font-size: 1.2em; margin-bottom: 20px; outline: none; width: 80%; padding: 5px; } .chalkboard input[type="text"]::placeholder { color: #999; } .chalkboard button { background: #f5c7b8; border: none; border-radius: 5px; color: #333; cursor: pointer; font-size: 1.2em; margin-top: 20px; padding: 10px 20px; transition: background 0.3s ease-in-out; } .chalkboard button:hover { background: #f3a791; } .chalkboard ul { list-style: none; padding: 0; margin: 0; } .chalkboard li { margin: 10px 0; animation: fadeIn 1s ease-in-out; } @keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } } .chalkboard li::before { content: '✔️'; margin-right: 10px; } .emoji { font-size: 2em; } .icon { font-size: 1.5em; margin: 0 5px; } </style> </head> <body> <div class="chalkboard"> <div class="chalkboard-content"> <div class="chalkboard-header"> <h1>Welcome to My Pastel Chalkboard</h1> </div> <div class="chalkboard-body"> <input type="text" id="chalkboard-input" placeholder="Write your text here..."> <button type="button" onclick="addText()">Add to Chalkboard</button> <ul id="chalkboard-list"></ul> </div> <div class="chalkboard-footer"> <div class="emoji">🎉✨👍</div> <div class="icons"> <i class="icon">🌟</i> <i class="icon">📚</i> <i class="icon">✏️</i> </div> </div> </div> </div> <script> function addText() { const input = document.getElementById('chalkboard-input'); const text = input.value.trim(); if (text) { const list = document.getElementById('chalkboard-list'); const li = document.createElement('li'); li.textContent = text; list.appendChild(li); input.value = ''; input.focus(); } } </script> </body> </html>