Back to Home
Code Playground
HTML
CSS
JavaScript
Hello, World!
Start coding and see the magic happen.
Click Me
body { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100vh; font-family: sans-serif; background-color: #f0f4f8; color: #333; } h1 { color: #1e40af; /* A nice blue */ font-size: 3rem; } button { background-color: #1e40af; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; font-size: 1rem; transition: background-color 0.3s; } button:hover { background-color: #1d4ed8; }
function showAlert() { const heading = document.querySelector('h1'); heading.textContent = 'You clicked the button!'; }