61 lines
No EOL
1.1 KiB
HTML
61 lines
No EOL
1.1 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>isa8 – EIS SoSe 25</title>
|
||
|
||
<link rel="stylesheet" href="style.css">
|
||
|
||
<style>
|
||
.blink-text {
|
||
font-family: Arial, sans-serif;
|
||
font-size: 50px;
|
||
font-weight: bold;
|
||
animation: blinkColors 1s infinite;
|
||
}
|
||
|
||
@keyframes blinkColors {
|
||
0% {
|
||
color: pink;
|
||
}
|
||
|
||
50% {
|
||
color: green;
|
||
}
|
||
|
||
100% {
|
||
color: pink;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
|
||
<body>
|
||
|
||
<script src="script.js"></script>
|
||
|
||
<header>
|
||
<nav>
|
||
<a href="index.html">Start</a>
|
||
<a href="ueber_uns.html">Über uns</a>
|
||
<a href="eis_projekt.html">Projekt</a>
|
||
<a href="kontakt.html">Kontakt</a>
|
||
<a href="impressum.html">Impressum</a>
|
||
</nav>
|
||
</header>
|
||
|
||
<main>
|
||
<h1>Sneaky Snack Snakes</h1>
|
||
|
||
<p class="blink-text">
|
||
Schlangen snaken gerne Chips
|
||
</p>
|
||
</main>
|
||
|
||
<footer>
|
||
<p>© 2026 - Lernprojekt EIS</p>
|
||
</footer>
|
||
|
||
</body>
|
||
</html> |