HTML Script tag is used for adding scripting language inside the script tag, that means JavaScript, JQuery, etc,. HTML Scripting languages makes HTML more Interactive and more Dynamic.
HTML Script tag syntax given below,
HTML Script tag example given below,
Script - It is Client side script,
The above example will help you to learn about script.
Thanks.
HTML Script tag syntax given below,
<script>
// Script programming
</script>
// Script programming
</script>
HTML Script tag example given below,
<html>
<head>
<title>Welcome to Fresherstarget</title>
</head>
<body>
<script>
document.write("Hello Freshers!")
</script>
</body>
</html>
<head>
<title>Welcome to Fresherstarget</title>
</head>
<body>
<script>
document.write("Hello Freshers!")
</script>
</body>
</html>
Script - It is Client side script,
The above example will help you to learn about script.
Thanks.