How do you add css and javascript to an html document?

Zr970

New member
Alright, i tried a variety of possibilities on how to do this, but i failed each time. The closest i got was this:
<head>
<title>Undead Army</title>
<script ;language= "javascript" type="text/javascript">
//Display a greeting
alert("Greetings, This is the Undead Army's page.");
window.defaultStatus="The Undead Army"
</style>
<style type = "text/css">
body {
color: Red;}
</style>
</head>
, and that just broke it. How do i add both css and javascript to a html document, without having to create a css stylesheet, or make another webpage?
 
Back
Top