First off, your CSS example is incorrect. All of the lines in red should be removed, and the attribute in blue should be added.
Code:
<style type="text/css">
<!--
<link rel="stylesheet" type="text/css" href="../css/standardstyles.css">
-->
</style>
The equivalent for external JavaScript files is as follows:
Code:
<script language="JavaScript" type="text/javascript" src="scriptfile.js"></script>
You can place alternate content (to be displayed if the browser does not support JavaScript) between the <script> and </script> tags if you wish.
Note that scriptfile.js should just contain JavaScript. No <script> tags or <!-- html comments -->.
Bookmarks