02.The power of JavaScript-3

by Aruna Sanjeewa

HTML

<!DOCTYPE html>
<html>
<body>
<h2>02.The power of JavaScript-3</h2>
<h3>Change HTML styles (CSS)</h3>

<p id="demo">JavaScript can change the style of an HTML element.</p>

<button type="button" onclick="document.getElementById('demo').style.color='red'">Click Me!</button>


</body>
</html>