LA mejor forma de empezar con css, es bajarte una hoja de estilos de otra web, o de algún tutorial, y subirla en el servidor donde tengas alojada tu pagina haciendo el enlace entre la pagina y tu hoja de estilos...
este esun ejemplo de una hoja de estilos.. la guardas como
estilos.css
Código CSS:
Ver originalbody {
background-color: #666666;
font-family: Arial, Helvetica, sans-serif;
}
/*Documento CSS*/
#menu{
float: left;
width: 150px;
height: 100px;
padding: 7px;
padding-left: 8px;
border-right-color: #ececf;
border-right-width: 1px;
border-right-style: dotted;
}
#menu a{
padding: 3px 1px;
display: block;
width: 100%;
text-decoration: none;
font-weight: bold;
color: #CCCCCC;
border-bottom-width: 1px;
border-bottom-style: dotted;
border-bottom-color: gray;
}
#menu a:hover{
background-color: #CCCCCC;
color: #333333;
}
#contenido{
float:center;
margin:0 auto 0 auto;
width:480px;
height: 600px;
padding: 5px;
padding-bottom: 8px;
background-color: #CCCCCC;
}
.titulo {
color: #006699;
font-family: ‘Palatino Linotype’, ‘Book Antiqua’, Palatino, serif, Verdana, Arial, Helvetica, sans-serif;
text-align:center;
}
.comentario {
color: #006699;
font-family: ‘Palatino Linotype’, ‘Book Antiqua’, Palatino, serif, Verdana, Arial, Helvetica, sans-serif;
text-align:center;
font-style: italic;
}
.parrafos {
color: #000000;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
y luego un codigo html como este
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"lang="es" xml:lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Titulo</title>
<link href="estilos.css" rel="stylesheet" type="text/css">
</head>
<body>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<div id="menu">
este es el menu <br>
</div>
<div id="contenido">
<h3 class="titulo">este es el contenido en titulo</h3>
<br>
<h2 class="comentario">este un coentario</h2>
<BR><BR> <h1 class="titulo">este un titulo masgrande</h1>
<p>Escoge una opción del menú... </p>
</div>
</body>
</html>
y si utilizas un editor como notepad++ podrias probarlo. se baja rapido y no te quita mucho tiempo, si despues quieres cambiar los estilos vas probando y asi te daras cuenmta de que es cada cosa