/* - usar font-family no fim da tag - usar aspas nos nomes das fontes com espaços - usar mais do que um nome de fonte e terminar com um nome genérico serif (probably Times) sans-serif (probably Arial or Helvetica) cursive (probably Comic Sans) fantasy (probably Ransom) monospace (probably Courier) (Note: Netscape Communicator doesn't support cursive or fantasy.) - formatações de fonte possíveis: font-family: verdana font-size: 10pt (points), 10px (pixeis) font-weight: 100, 200, ..., 900, bold font-style: italic, normal font-variant: small-caps (não suportado) text-transform: uppercase, lowercase, capitalize, none text-decoration: underline, overline, line-through, blink, none (Note: Communicator doesn't support overline. IE 4 doesn't support blink. IE 3 doesn't support either of those values.) font - - formatações de links, a tag é a A A:link { ... } antes do click A:active { ... } durante o click A:visited { ... } depois do click a:hover Mas estas diferenças são pouco suportadas. Usar só o A - de paragrafo text-align: center, left, center, justify This property works only on block-level elements, which are elements that on their own define a new paragraph, such as
,
, and. text-indent: 2em - outras color: #333339, rgb(51,204,0) aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, teal, white, and yellow background-color: #FFFF66 background-image: url(background.gif) (não suportado) position: absolute; left: 100px; top: 43px, left ???, top ???, width. z-index: 1 (maior no topo) */ H1, H2, H3, H4, H5, H6 { color: darkblue; font-weight: normal; text-align: left; font-family: Impact, Verdana, 'Myriad Web', Syntax, sans-serif; } BODY, P { color: black; font-size: 15; font-weight: normal; text-align: left; font-family: Tahoma, 'Myriad Web', Syntax, sans-serif; } PRE, CODE, TT { color: black; font-family: monospace; } .small { color: black; font-size: 10pt; font-weight: normal; text-align: left; } .small2 { color: black; font-size: 8pt; font-weight: normal; text-align: left; } .vsmall { color: black; font-size: 1pt; font-weight: normal; text-align: left; } .footer { color: black; font-size: 7pt; font-weight: normal; text-align: center; } .infrow { color: #006699; font-size: 12pt; font-weight: bold; text-align: left; font-family: Helvetica, Verdana, 'Myriad Web', Syntax, sans-serif; } .snovid { color: black; font-size: 10pt; font-weight: bold; text-align: left; } .english { color: #FFFF99; font-weight: normal; text-align: left; font-style: italic; } .titulo { color: black; font-size: 35pt; font-weight: bold; text-align: left; font-family: Verdana, 'Myriad Web', Syntax, sans-serif; } .titul1 { color: #006699; font-size: 12pt; font-weight: bold; text-align: left; font-family: Helvetica, Verdana, 'Myriad Web', Syntax, sans-serif; } .titulo1_novidade { color: darkblue; font-size: 12pt; font-weight: bold; text-align: center; font-family: Helvetica, Verdana, 'Myriad Web', Syntax, sans-serif; } .smtit1 { color: black; font-size: 10pt; font-weight: bold; font-family: Helvetica, Verdana, 'Myriad Web', Syntax, sans-serif; } .smtit2 { color: black; font-size: 8pt; font-weight: normal; font-family: Helvetica, Verdana, 'Myriad Web', Syntax, sans-serif; } .sumario_referencia { color: black; font: italic font-size: 10pt; font-weight: normal; font-family: Helvetica, Verdana, 'Myriad Web', Syntax, sans-serif; } .novidade { color: yellow; font-weight: bold; } A:link { text-decoration: none; } A:visited { text-decoration: none; } A:active { text-decoration: none; } A:hover { background: #CCF; text-decoration: none; }