Projekt
This commit is contained in:
parent
fa6de20328
commit
4af8acf309
1 changed files with 54 additions and 16 deletions
|
|
@ -1,23 +1,61 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="de">
|
||||||
<head><link rel="stylesheet" href="style.css"><meta charset="UTF-8"><title>isa8 – EIS SoSe 25</title></head>
|
|
||||||
<script scr="script.js"></script>
|
<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>
|
<body>
|
||||||
|
|
||||||
|
<script src="script.js"></script>
|
||||||
|
|
||||||
<header>
|
<header>
|
||||||
<nav>
|
<nav>
|
||||||
<a href="index.html">Start</a>
|
<a href="index.html">Start</a>
|
||||||
<a href="ueber_uns.html">Über uns</a>
|
<a href="ueber_uns.html">Über uns</a>
|
||||||
<a href="eis_projekt.html">Projekt</a>
|
<a href="eis_projekt.html">Projekt</a>
|
||||||
<a href="kontakt.html">Kontakt<a/>
|
<a href="kontakt.html">Kontakt</a>
|
||||||
<a href="impressum.html">Impressum<a/>
|
<a href="impressum.html">Impressum</a>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
<main>
|
|
||||||
<h1>Sneaky Snack Snakes</h1>
|
<main>
|
||||||
<p>Einführung in interaktive Snakewareanwendungen – SnackSnake 2026</p>
|
<h1>Sneaky Snack Snakes</h1>
|
||||||
<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>
|
</main>
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
<p>© 2026 - Lernprojekt EIS</p>
|
<p>© 2026 - Lernprojekt EIS</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Loading…
Reference in a new issue