Making a count-down button using HTML CSS and JavaScript.
In the HTML body tag, create a button with the button tag with an id.
1. Apply some CSS to give your button a nice look.
2. Add JavaScript code to the script tag.
3. Use the setInterval() method to execute the update function which will decrement the counter value.
4. Get the id using the getElementById() method and use the innerHTML property to display the count.