JavaScript
The language for programming web pages.Simple Code:
<!DOCTYPE html>
<html>
<body>
<p id="demo">Click the button to change the style of this paragraph:</p>
<script>
function myFunction() {
var x = document.getElementById("demo");
x.style.fontSize = "25px";
x.style.color = "red";
}
</script>
<button onclick="myFunction()">Click Me!</button>
</body>
</html>
Write or copy and paste this code in notepad and save the page in .html or .htm extension
(i.e. javascript.html)
No comments:
Post a Comment
What you think about this post..............;)