(4) Semantic Mark-up Language in External File
Example
This script contains semantic mark-up language, the <p> </p> tag-pair in this instance:
<script type="text/javascript">
document.write('<p>Last Update, whenever.</p>');
</script>What must you do?
Put the script in an external .js file:
<script type="text/javascript" src="whatever.js"> </script>
