Cómo poner imagen de fondo en HTML
El codigo tiene q ir arriba despues del </head>
FONDO CON IMAGEN
Quote
<body background="http://unviciomas.com/fondoooo2.png">
Cómo poner imagen de fondo en CSS
El codigo se coloca antes del </head>
Quote
<style type="text/css">
<!--
body {
margin-top: 0px;
background-image: url(http://unviciomas.com/fondoooo2.png);
margin:0px;
padding:0px;
}
-->
</style>
Cómo poner imagen de fondo + Color en CSS
Quote
<style type="text/css">
<!--
body {
margin-top: 0px;
background-color: #0000FF;
background-image: url(http://unviciomas.com/IMAGEN_DE_FONDO.png);
background-repeat: no-repeat;
margin:0px;
padding:0px;
}
-->
</style>
FONDO SOLAMENTE DE COLOR
El codigo tiene q ir arriba despues del </head>
Quote
<body style="background:#0000FF; margin:0px; padding:0px;">