Modern 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>Modern Chalkboard</title> <style> body { margin: 0; padding: 0; background: #1c1c1c; font-family: 'Arial', sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; overflow: hidden; } .chalkboard { background: #333; border: 15px solid #4a4a4a; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); border-radius: 10px; width: 70%; height: 70%; position: relative; overflow: hidden; padding: 20px; color: #fff; font-size: 1.5em; text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); 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/asfalt-light.png'); opacity: 0.4; } .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.1); border-radius: 10px; } .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: #333; } .chalkboard-body::-webkit-scrollbar-thumb { background: #1abc9c; border-radius: 10px; } .chalkboard input[type="text"] { background: transparent; border: none; border-bottom: 2px solid #1abc9c; color: #1abc9c; font-size: 1.2em; margin-bottom: 20px; outline: none; width: 80%; text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); padding: 5px; } .chalkboard input[type="text"]::placeholder { color: #999; } .chalkboard button { background: #1abc9c; border: none; border-radius: 5px; color: #fff; cursor: pointer; font-size: 1.2em; margin-top: 20px; padding: 10px 20px; transition: background 0.3s ease-in-out; } .chalkboard button:hover { background: #16a085; } .chalkboard ul { list-style: none; padding: 0; margin: 0; } .chalkboard li { margin: 10px 0; animation: fadeInSlideUp 1s ease-in-out; } @keyframes fadeInSlideUp { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } } .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 Modern 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>