35 lines
930 B
HTML
Executable File
35 lines
930 B
HTML
Executable File
<!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> |