Homepage-Button
Ein Button auf der Homepage:
<body> <button onclick="window.location.href = 'https://praxislexikon.de';">Hier klicken</button> </body>
<html>
<head>
<title>Der Titel des Dokuments</title>
<style>
.button {
background-color: #FF4500;
border: none;
color: white;
padding: 10px 34px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<a href="https://praxislexikon.de/" class="button">Hier klicken</a>
</body>