16 lines
338 B
HTML
16 lines
338 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Klassen-Selektor</title>
|
|
<style>
|
|
body { padding: 1.2rem; font-family: system-ui, sans-serif; }
|
|
.wichtig { color: red; font-weight: bold; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p class="wichtig">Dieser Text ist wichtig.</p>
|
|
<p>Dieser nicht.</p>
|
|
</body>
|
|
</html>
|