homeUnix & Internet  Prof. Dr. Uwe Schmidt FH Wedel

Die Datei: example1.html


weiter
<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&auml;lliger<br>
Absatz</p>
<p>Hier geht's
wieder normal
weiter</p>
<p class="bunt">Jetzt
wird's wieder<br>
bunt<p>
</body>
</html>

Letzte Änderung: 14.02.2012
© Prof. Dr. Uwe Schmidt
Prof. Dr. Uwe Schmidt FH Wedel