html:
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tiere</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
background-color: #f5f5f5;
}
/* Navigation */
nav {
background-color: #000000;
overflow: hidden;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}
nav ul li {
display: inline;
}
nav ul li a {
display: block;
color: white;
text-align: center;
padding: 14px 20px;
text-decoration: none;
font-weight: bold;
}
nav ul li a:hover {
background-color: 888888;
}
/* Inhalt */
.content {
padding: 20px;
text-align: center;
}
h1 {
color: #333;
}
</style>
</head>
<body>
<nav>
<ul>
<li><a href="https://de.wikipedia.org/wiki/Schafe">Schafe</a></li>
<li><a href="https://de.wikipedia.org/wiki/Ziegen">Ziegen</a></li>
<li><a href="https://de.wikipedia.org/wiki/Meerschweinchen">Meerschweinchen</a></li>
<li><a href="https://de.wikipedia.org/wiki/Katzen">Katzen</a></li>
<li><a href="https://de.wikipedia.org/wiki/Hunde">Hunde</a></li>
</ul>
</nav>
<div class="content">
<h1>Willkommen in der Tierwelt!</h1>
<p>Wähle oben ein Thema, um mehr über verschiedene Tierarten zu erfahren.</p>
</div>
</body>
</html>
PCs/hardware:
CPU
Mainboard
Netzteil
RAM/Arbeitsspeicher
SSD/HDD
Gehäuse
Lüfter
Microbit selbst programiert:

|