This commit is contained in:
2024-10-29 14:11:37 +01:00
parent 24cffc3c6c
commit 3954d3b1bf
10 changed files with 364 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>CSS einbinden</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<style>
h2 {
background-color: yellow;
}
</style>
</head>
<body>
<h2 style="background-color: blue;">Erste Überschrift</h2>
<h2>Zweite Überschrift</h2>
</body>

View File