a
This commit is contained in:
24
WS24_25/WebTech/ue5/a3/seite.html
Normal file
24
WS24_25/WebTech/ue5/a3/seite.html
Normal file
@@ -0,0 +1,24 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user