<div style="text-align:center; padding:40px;">
<h2 style="color:#3f37c9;">Simple Counter</h2>
<h1 id="count">0</h1>
<button onclick="increment()" style="padding:10px 20px;
background:#4361ee; color:white; border:none;
border-radius:5px; cursor:pointer;">
Increment
</button>
</div>
<script>
let count = 0;
function increment() {
count++;
document.getElementById('count').innerText = count;
}
</script>