<script>
element
<!ELEMENT script - - %Script; -- script statements --> <!ATTLIST script charset %Charset; #IMPLIED -- char encoding of linked resource -- type %ContentType; #REQUIRED -- content type of script language -- src %URI; #IMPLIED -- URI for an external script -- defer (defer) #IMPLIED -- UA may defer execution of script -- >
<script> element typically goes in head, but can be a child of body and many other elements.script element should not be empty, but should include a space, a comment, or even a simple return true; statement.