Reputation: 94
I tried to open make the website to open "Kapital 2" but it doesnt work, it shows like a hyperlink but when i press on it doesnt happend anything. Any helpp?
<html>
<head>
<title>Hyperlinks</title>
<meta charset="UTF-8">
</head>
<body>
<a href="textauszeichnungen/3.html">Index 3</a>
<a href id="Kapitel 2">Nach Kapitel 2</a>
</body>
</html>
Upvotes: 0
Views: 33
Reputation: 403
2.html
Page Name Where You Want to Open an Page
<html>
<head>
<title>Hyperlinks</title>
<meta charset="UTF-8">
</head>
<body>
<a href="textauszeichnungen/3.html">Index 3</a>
<a href="textauszeichnungen/2.html" id="Kapitel 2">Nach Kapitel 2</a>
<a href="1.html">Page 1</a>
</body>
</html>
Upvotes: 1