Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Der Titel des Dokuments</title>
<style>
.link:hover {
text-decoration: underline;
color: blue;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Hyperlink mit JavaScript</h1>
<p>Besuchen Sie unsere Website</p>
<p onclick="window.open('https://de.w3docs.com/')" class="link">W3docs</p>
</body>
</html>