Propriedades básicas para configurar fontes :
color
|
Cor da fonte
|
Font-family
|
Tipo de
fonte
|
Font-size
|
Tamanho da
fonte
|
Fonte-style
|
Estilo da
fonte
|
Font- weight
|
negrito
|
Valores para as propriedades:
Color: código hexadecimal (#FFFFFF), nome da cor
(red,blue...).
Font-family: Arial, Verdana
...
Font-size: small, medium,
large, tamanho (12 pt, 12px, 12cm).
Font-style: normal, italic,
oblique.
Font-weight:
normal,bold,lighter, 100, 200,300 … 900.
Exemplo:
<html>
<head>
<style type=”text/css”>
H1 {color: #66FF00;
Font-family: Adobe Hebrew;
Font-size: large;
Font-style:oblique;
Font-weight: bold;
}
</style>
</head>
<body>
<h1> Título estilizado
com CSS </h1>
<h2> Título não
estilizado com CSS </h2>
</body>
</html>
Nenhum comentário:
Postar um comentário
Obrigado por deixar menos complicado!