Exemple de script CSS

Rappel du script CSS que vous avez inséré dans cette page HTML : entre les balises <head> et </head>
<style type="text/css>
body { background-color: rgb(200, 180, 170);
font-family: arial,verdana,sans-serif;
color: rgb(120, 120, 120);
margin: 10px;
}
h1 {
font-family: arial,verdana,sans-serif;
color: rgb(0, 100, 170);
font-weight: 600;
}
p {
font-family: arial,verdana,sans-serif;
font-size: 11pt;
font-weight: 700;
color: rgb(0, 150, 180);
background-color: rgb(200, 180, 170);
}
</style>