HTML Javascript is used to make a web page interective and dynamic. HTML Javascript is used by "script" tag.
Example
<!Doctype Html>
<html>
<head>
<title>HTML Javascript</title>
</head>
<body>
<p id="new"></p>
<script>
document.getElementById("new").innerHTML = "Hello JavaScript!";
</script>
</body>
</html>
Output
Hello Javascript
Copyright ©2022 coderraj.com. All Rights Reserved.