You should really have a doctype included and meta tags. Something like this would be better:
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="style.css">
<title>Site title here</title>
</head>
<body>
<!-- Content here -->
</body>
</html>
Then if you wanted javascript in your page you could link to an external file like so:
HTML Code:
<script type="text/javascript" src="externalJS.js"></script>
or have it within the html code like:
HTML Code:
<script type="text/javascript">
// Your javascript goes in here.
</script>
The same applies for Cascading Style Sheets (CSS)
External file:
HTML Code:
<link rel="stylesheet" type="text/css" href="style.css">
Internal CSS:
HTML Code:
<style type="text/css">
</style>