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>
|
||||
<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/>
|
||||
</nav>
|
||||
<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>Einführung in interaktive Snakewareanwendungen – SnackSnake 2026</p>
|
||||
<p>Diese Seite ist euer Snakespace. Legt eure Dateien in <code>~/public_html/</code> ab.</p>
|
||||
|
||||
<main>
|
||||
<h1>Sneaky Snack Snakes</h1>
|
||||
|
||||
<p class="blink-text">
|
||||
Schlangen snaken gerne Chips
|
||||
</p>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<p>© 2026 - Lernprojekt EIS</p>
|
||||
<p>© 2026 - Lernprojekt EIS</p>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
Loading…
Reference in a new issue