02.The power of JavaScript-1
HTML
<!DOCTYPE html>
<html>
<body>
<h2>02.The power of JavaScript-1</h2>
<h3>Change HTML content.</h3>
<p id="para">JavaScript can change HTML content.It find element and apply new things to innerHTML </p>
<button type="button" onclick='document.getElementById("para").innerHTML = "Welcome to Netexplode Blog "'>Click Me!</button>
</body>
</html>