Home Live Code Editor (HTML/CSS/JS) Daily Quotes August 05, 2025 Live Code Editor Live Code Editor Edit HTML, CSS, and JavaScript in real-time HTML CSS JavaScript HTML Clear × Collapse ▼ My Page Welcome to Live Editor Edit the code on the left and see changes in real-time! Click Me CSS Clear × Collapse ▼ /* Add your CSS styles here */ #demo-btn { transition: all 0.3s ease; } #demo-btn:active { transform: translateY(1px); } body { background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); min-height: 100vh; } JavaScript Clear × Collapse ▼ document.getElementById('demo-btn').addEventListener('click', function() { const colors = ['#6c5ce7', '#00b894', '#fd79a8', '#fdcb6e', '#0984e3']; const randomColor = colors[Math.floor(Math.random() * colors.length)]; // Animate button this.style.transform = 'scale(0.95)'; setTimeout(() => { this.style.transform = 'scale(1)'; }, 100); // Change background document.body.style.background = `linear-gradient(135deg, ${randomColor} 0%, #f5f7fa 100%)`; // Show alert alert('Background color changed!'); }); Output Preview Run Code ▶ Facebook Twitter