Grundstruktur und Index-Datei hinzugefügt.

This commit is contained in:
Daniel Spittank 2022-01-10 23:20:07 +01:00
parent db3d74c858
commit ce8f695a53
3 changed files with 41 additions and 0 deletions

BIN
grundstruktur/apfelmus.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

30
grundstruktur/index.html Normal file
View File

@ -0,0 +1,30 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<title>Grundstruktur</title>
<style>
h1 {
color: magenta;
font-size: 100pt;
}
h2.meineUeberschrift {
color: blue;
font-size: 50pt;
}
</style>
</head>
<body>
<h1>Apfelmus</h1>
<img src="apfelmus.jpg">
<h2 class="meineUeberschrift">Zutaten</h2>
<p>Ein Absatz...</p>
<h2>Herstellung</h2>
<p>Ein weiterer Absatz</p>
</body>
</html>

11
index.html Normal file
View File

@ -0,0 +1,11 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<title>Meine tolle Webseite</title>
</head>
<body>
Hier kommt mein Inhalt hin.
</body>
</html>