#1 - Html Basics

This commit is contained in:
HerzogDev
2026-03-02 20:44:58 +01:00
parent 29c70f553c
commit 4c9088b440
5 changed files with 54 additions and 0 deletions

10
02.03/Box/index.html Normal file
View File

@@ -0,0 +1,10 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Matura-Kurs</title>
<link rel="stylesheet" href="style.css" />
</head>
<body></body>
</html>

8
02.03/Box/style.css Normal file
View File

@@ -0,0 +1,8 @@
body {
border: 1px solid black;
position: fixed;
top: 50px;
left: 50px;
right: 50px;
bottom: 50px;
}