24 lines
527 B
HTML
24 lines
527 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
|
|
<head>
|
|
<title>Übung: CSS-Regeln überschreiben</title>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
<link rel="stylesheet" type="text/css" href="custom.css">
|
|
<style>
|
|
article.art {
|
|
border: 1px solid lightgray;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1 style="color: blue;">Mein Blog</h1>
|
|
<article class="art">
|
|
<h2>CSS Grid</h2>
|
|
<p>Das Grid-Modell von CSS...</p>
|
|
</article>
|
|
</body>
|
|
|
|
</html> |