16 lines
353 B
HTML
16 lines
353 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>CSS Anatomie</title>
|
|
<style>
|
|
body { padding: 1.2rem; font-family: system-ui, sans-serif; }
|
|
p { color: blue; font-size: 16px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Dieser Absatz ist blau und 16 Pixel groß.</p>
|
|
<p>Alle p-Elemente werden gleich gestylt.</p>
|
|
</body>
|
|
</html>
|