2
0

add files of code before my time in the class

This commit is contained in:
Schuledaniel
2025-11-18 13:35:07 +01:00
parent 861ebfbe3d
commit 4632ceaac0
23 changed files with 970 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML-Grundlagen: Verweise</title>
</head>
<body>
<h1>HTML-Grundlagen: Verweise</h1>
<h2>relative Verweise</h2>
<!-- href = hyper reference | a = anker -->
<a href = "listen.htm">Zur Datei "Listen"</a><br>
<a href = "downloads/file.pdf">Download</a><br>
<a href = "images/pic.jpg">Bild ansehen</a>
<h2>absolute Verweise (externe URL's)</h2>
<a href = "https://www.wvss-mannheim.de" target = "_blank">
Zur Website der WvSS
</a><br>
<!-- Achtung Fishing !!! -->
<a href = "https://google.de" target = "_blank">
Auf Sparkasse.de anmelden
</a><br>
<h2>Verlinkte Grafiken</h2>
<a href = "images/pic.jpg">
<img src="images/pic.jpg" width = "10%" alt = "thumb">
</a>
</body>
</html>