Click to See Complete Forum and Search --> : i have 2 things to put in the <head> section...how do i do it?


xdreamsx
03-26-2003, 10:04 PM
i have to put CSS and a javascript in my header...how do i do that?

Jick
03-26-2003, 11:45 PM
I'm pretty sure you can just use them in the head fine but I don't really understand your question could you be more specific.

Nedals
03-27-2003, 01:53 AM
<html>
<head>
<!-- This is the head section -->
<title></title>

<style type="text/css">
/* This is where the CSS stuff goes

</style>

<script type="text/javascript">
<!--
// This is where the javascript goes

//-->
</script>
</head>

<body.......