STRUTTURA DELLA PAGINA


Un documento HTML può essere visto come un insieme di blocchi (contenitori) sui quali si può agire con stili diversi. Ogni tag HTML definisce un blocco.



Proprietà


 Proprieta sfondo :  Proprieta margini :  Proprieta testo :
>background-color > margin-left > font-style
>background-image > margin-right > font-weight
  > margin-top > font-size
  > margin-bottom > font-family
    > text-align
    > text-color
    > text-decoration

Esempio :



  body { color:black; background:yellow; }
  p { font-size:120%; font-style:italic; color:green; }
  h1 { margin-left:10%; margin-right:10%; }
  h2 { font-family: "Times New Roman", Arial; }
  A:link { color:red; text-decoration:none; }
  A:visited { color:blue; }
Copyright (c) 2010 ilcorsaronero. All rights reserved.