<html>
<head>
<title>CSS:
1. Beispiel</title>
<style>
p.bunt {
color: yellow;
background: blue;
font-family: serif;
font-weight: bold;
font-size: large;
text-transform: uppercase
}
</style>
</head>
<body>
<p>Ein normaler
Absatz</p>
<p class="bunt">Ein
auffälliger<br>
Absatz</p>
<p>Hier geht's
wieder normal
weiter</p>
<p class="bunt">Jetzt
wird's wieder<br>
bunt<p>
</body>
</html>