how to display something after the button is clicked in html css js code example
Example 1: button functions html
<script>
function myFunction() {
alert("ALERT");
}
</script>
<button onclick="myFunction">Click</button>
Example 2: how to create button on button click
-------------------------------------------