Here's a Basic JavaScript/Cascasing Style Sheet Template.
<html>
<head>
<title>Basic HTML-JavaScript - CSS Template</title>
<--External Cascading Style sheet-->
<LINK REL = "stylesheet" TYPE = "text/css" href="comic.css">
<--External Cascading Style sheet-->
<style type="text/css">
p {
font-family : Comic Sans MS, Verdana, Arial, sans-serif;
color : blue;
font-size : 12pt;
weight : bold;
}
</style>
<SCRIPT LANGUAGE="JAVASCRIPT" type="text/javascript">
<!--Hide Script from older browsers
<Insert Javascript Here
//End hiding script from older browsers-->
</script>
</head>
<!-- The body of the HTML document starts here.-->
<body>
</body>
</html>