mirror of
https://git.schule.click/GymSedan/ifg-html-vorlage.git
synced 2024-11-21 16:55:07 +01:00
Grundstruktur und Index-Datei hinzugefügt.
This commit is contained in:
parent
db3d74c858
commit
ce8f695a53
3 changed files with 41 additions and 0 deletions
BIN
grundstruktur/apfelmus.jpg
Normal file
BIN
grundstruktur/apfelmus.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 43 KiB |
30
grundstruktur/index.html
Normal file
30
grundstruktur/index.html
Normal 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
11
index.html
Normal 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>
|
Loading…
Reference in a new issue