HTML/CSS/Object Tags/script
"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>