'script' Example : script « Object « HTML / CSS






'script' Example

    
<html>
<head>
<title>script element example</title>
    <script language="javascript" src="yourjavascriptfile.js">
    </script>
    <script id="script1" language="javascript">
    <!--script code//-->
    </script>
</head>
<body>
    <script id="script2" language="javascript">
    <!--script code //-->
    </script>
</body>
</html>
    
      
      








Related examples in the same category