19 lines
422 B
HTML
19 lines
422 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Element-Selektor</title>
|
|
<style>
|
|
body { padding: 1.2rem; }
|
|
p { color: gray; font-family: Georgia, serif; }
|
|
h1, h2, h3 { font-family: sans-serif; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Überschrift (sans-serif)</h1>
|
|
<p>Absatz: grau, Georgia (serif).</p>
|
|
<h2>Untertitel (sans-serif)</h2>
|
|
<p>Noch ein grauer Absatz.</p>
|
|
</body>
|
|
</html>
|