Files
FH/WS24_25/WebTech/ue4/1/seite.html
2024-10-29 14:11:37 +01:00

18 lines
358 B
HTML

<!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>