HTML
CSS
JS
index.html
AI Review
Reset
<h1>Click Counter</h1> <p>Count: <span id="count-display">0</span></p> <button id="increment-btn">+1</button> <button id="reset-btn">Reset</button>
body { font-family: sans-serif; padding: 40px; text-align: center; } button { font-size: 18px; padding: 10px 20px; margin: 4px; cursor: pointer; } #count-display { font-size: 32px; font-weight: bold; color: #2563eb; }
// Build the click counter logic here
Live Preview