This commit is contained in:
ElenaRJ 2026-05-20 17:26:55 +02:00
parent fa6de20328
commit 4af8acf309

View file

@ -1,23 +1,61 @@
<!DOCTYPE html>
<html>
<head><link rel="stylesheet" href="style.css"><meta charset="UTF-8"><title>isa8 EIS SoSe 25</title></head>
<script scr="script.js"></script>
<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/>
<a href="kontakt.html">Kontakt</a>
<a href="impressum.html">Impressum</a>
</nav>
</header>
<main>
<h1>Sneaky Snack Snakes</h1>
<p>Einführung in interaktive Snakewareanwendungen SnackSnake 2026</p>
<p>Diese Seite ist euer Snakespace. Legt eure Dateien in <code>~/public_html/</code> ab.</p>
<p class="blink-text">
Schlangen snaken gerne Chips
</p>
</main>
<footer>
<p>&copy; 2026 - Lernprojekt EIS</p>
</footer>
</body>
</html>