So sieht ein Hyperlink aus:
https://www.w3schools.com/html/default.asp
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hyperlink Beispiel</title>
<style>
.link-example {
color: blue;
text-decoration: underline;
}
</style>
</head>
<body>
<p>So sieht ein Hyperlink aus:</p>
<a href="https://www.w3schools.com/html/default.asp" class="link-example">https://www.w3schools.com/html/default.asp</a>
</body>
</html>
Wie kannst du aus dem blauen link einen roten mit blauem Hintergrund machen?
https://www.w3schools.com/html/default.asp
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hyperlink Beispiel</title>
<style>
<style>
.text-container {
color: blue; /* Textfarbe auf Blau setzen */
}
.link-example {
color: red; /* Linkfarbe auf Rot setzen */
text-decoration: underline;
}
</style>
</head>
<body>
<p>So sieht ein Hyperlink aus:</p>
<a href="https://www.w3schools.com/html/default.asp" class="link-example">https://www.w3schools.com/html/default.asp</a>
</body>
</html>