eis-website/eis_projekt.html
2026-05-20 17:26:55 +02:00

61 lines
No EOL
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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>&copy; 2026 - Lernprojekt EIS</p>
</footer>
</body>
</html>