there are 3 places to put a css script
1. Inline
Code:
<div style="background-color: #000000">
2. Embedded - anywhere in the page, however it is suggested that its done in the head tag
Code:
<head>
<style type="text/css">
<!--
body {
background-color: #000000;
}
// -->
</style>
</head>
3. Linked - done in the head tag
Code:
<head>
<link type="text/css" rel="stylesheet" href="_host/path.css" />
</head>
if you are using IEv6 or before then you need a Javascript effect because the :hover property is not supported by browsers before v7 of IE
and as for a place to learn w3schools.com
I am hoping that you are using the coding section rather than design view?
Bookmarks