how to make an onclick button that display text in html code example
Example 1: javascript onclick
document.getElementById("myBtn").addEventListener("click", function() {
alert("Hello World!");
});
Example 2: button functions html
<script>
function myFunction() {
alert("ALERT");
}
</script>
<button onclick="myFunction">Click</button>