aa
esto es lo que tienes:
<link rel="stylesheet" href="estilos.css" type="text/css" media="hall">
cambialo por esto el error esta en media="hall"
<link rel="stylesheet" href="estilos.css" type="text/css" media="all">
olguimor escribió:Así es como yo lo he puesto:
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2 body {background-color: #CD6090}
3 <html>
4 <head>
5 <title>Page title</title>
6 </head>
7 <body>
8
9
10
11</body>
0 </html>
En la fila 2 puse el cod.
kimapa escribió:olguimor escribió:Así es como yo lo he puesto:
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2 body {background-color: #CD6090}
3 <html>
4 <head>
5 <title>Page title</title>
6 </head>
7 <body>
8
9
10
11</body>
0 </html>
En la fila 2 puse el cod.
Tienes que definer el estilo, bien en la misma pagina o bien en un archivo aparte con la extensión .css Pegale un vistazo a este enlace y ponle interes que esto es de lo mas importante http://www.comocreartuweb.com/html-kit-tutorial/tutorial-html-kit-l….
De todas maneras este es el codigo modificado, hay veras que faltaba la etiqueta <style>:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Page title</title>
<style type="text/css">
body {background-color: #CD6090}
</style>
</head>
<body>
</body>
</html>
---.Saludos.---