CSS3 INTRODUÇÃO
CSS é
uma linguagem para formatar html.
Por
que usar css?
O CSS é usado para definir estilos para suas
páginas da Web, incluindo design, layout e variações de exibição para
diferentes dispositivos e tamanhos de tela.
Na prática:
<!DOCTYPE
html>
<html>
<head>
<style>
body {
background-color: blue;
}
h1 {
color: white;
text-align: center;
}
p {
font-family: verdana;
font-size: 20px;
}
</style>
</head>
<body>
<h1>Título da página</h1>
<p>Primeiro
paragráfo.</p>
</body>
</html>