problema con index.htm a estilo.css con dreamweaver 3.0

hoa el siguiente problema es que no puedo enlazar el index.htm con el estilo.css en dreamweaver 3.0 abajo le dejo el codigo de index:
-----------------------------------------------------------------------------------------
<html>

<head>

<title>Mi página</title>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="StyleSheet" href="estilo.css" media="screen" type="text/css">


</head>

<body>



Esta es mi pagina principal </p>


holaaaa </p>
</body>

</html>
-------------------------------------------------------------------------------------
Esta es la de estilo.css:
/* Esto es mi hoja de estilo */

BODY { background-color:orange ; }
A:link { font-weight: bold ; color: blue ; text-decoration: none; }

A:visited { font-weight: bold ; color: blue ; text-decoration: none; }

A:hover { font-weight: bold ; color: red ; }

A:active { font-weight: bold ; color: green ; }

P { font-family: Arial, Helvetica, sans-serif ; font-size: 17px ;

text-align:justify ; text-indent: 20px ; margin: 7px 8px 7px 8px ; }

* Fin de mi hoja de estilo */
-------------------------------------------------------------------------------------

Gracias desde yá.
hoLa el siguiente problema es que no puedo enlazar el index.htm con el estilo.css
-----------------------------------------------------------------------------------------
<html>

<head>

<title>Mi página</title>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="StyleSheet" href="estilo.css" media="screen" type="text/css">


</head>

<body>



Esta es mi pagina principal </p>


holaaaa </p>
</body>

</html>
-------------------------------------------------------------------------------------
Esta es la de estilo.css:
/* Esto es mi hoja de estilo */

BODY { background-color:orange ; }
A:link { font-weight: bold ; color: blue ; text-decoration: none; }

A:visited { font-weight: bold ; color: blue ; text-decoration: none; }

A:hover { font-weight: bold ; color: red ; }

A:active { font-weight: bold ; color: green ; }

P { font-family: Arial, Helvetica, sans-serif ; font-size: 17px ;

text-align:justify ; text-indent: 20px ; margin: 7px 8px 7px 8px ; }

* Fin de mi hoja de estilo */
-------------------------------------------------------------------------------------

POR LO TANTO:
MI PAGINA "index.html" NO RECONOCE LAS INDICACIONES DE "estiloss.css" ¿POR QUÉ?. URGENTE.



Gracias desde yá.
Creo que te faltó la "s" así:
<link rel="stylesheet" href="estilos.css" type="text/css" media="all">

el tuyo es así:
<link rel="StyleSheet" href="estilo.css" media="screen" type="text/css">

Fíjate que en el tuyo le falta la s .

Saludos