Initial commit
This commit is contained in:
5
HTML/html-kurs/Basics/div/div.css
Normal file
5
HTML/html-kurs/Basics/div/div.css
Normal file
@@ -0,0 +1,5 @@
|
||||
div {
|
||||
background-color: grey;
|
||||
width: 400px;
|
||||
height: 400px;
|
||||
}
|
||||
18
HTML/html-kurs/Basics/div/div.html
Normal file
18
HTML/html-kurs/Basics/div/div.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>DIV</title>
|
||||
<link rel="stylesheet" type="text/css" href="div.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div>
|
||||
<h1>Überschrift</h1>
|
||||
<p>Dies ist ein wenig Text in einem DIV!</p>
|
||||
</div>
|
||||
<br>
|
||||
<div></div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user