add files of code before my time in the class
This commit is contained in:
35
Zweites Jahr/alt/LJ1/verweise_e3fi1.htm
Executable file
35
Zweites Jahr/alt/LJ1/verweise_e3fi1.htm
Executable 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>
|
||||
Reference in New Issue
Block a user