domingo, 16 de agosto de 2009

domingo, 9 de agosto de 2009

Formulario - Css 10 08 09



Exemplo Formulario css

Inicio Html/Css - 10 08 09


-!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-html>
-title>-/title>
-head>
-style>
-/style>
-/head>
-body>
-/body>
-/html>

Imagem Hover - Css Matos 10 08 09


*{
margin:0px;
padding:0px;
}
body{
background: orange url("../imagens/matos/nfematos.jpg") no-repeat top right;
font-family: "Sans Serif";
font-size:40 px;
text-align: left;
color: red;
}
img{
margin: 10px;
padding: 10px;
width: 100px;
height: 100px;
border: 1px solid green;
}
img:hover{
width: 400px;
height: 400px;
}

Css - Estudos - Livro Criacao Sites Css - Pag 1 - 110 08 09

Testar Css http://w3tableless.com/

.nome_classe{atributos:valores}
#nome_id{atributos:valores}




a:link / a:visited / a:hover / a:active




*{
margin:0px;
padding:0px;
}
body{
background-image: url("../imagens/matos/nfematos.jpg");
font-family: "Sans Serif";
font-size:40 px;
text-align: left;
color: red;
}
h1, h2, h3 {
background: yellow;
color: green;
border: 1px solid orange;
}
a {
border: 1px solid pink;
}
hr {
color:green;
}