eis-website/eis_projekt.html

62 lines
2.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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EIS Projekt Lena</title>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="img/favicon.png" type="image/png">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="ueber_uns.html">Über mich</a></li>
<li><a href="eis_projekt.html">EIS Projekt</a></li>
<li><a href="kontakt.html">Kontakt</a></li>
<li><a href="impressum.html">Impressum</a></li>
<li><a href="notenrechner.html">Notenrechner</a></li>
<li><a href="textanalyse.html">Textanalyse</a></li>
</ul>
</nav>
<main>
<header>
<img src="img/logo.svg" alt="Logo" style="height: 40px;">
<h1>Mein EIS Projekt</h1>
<p>Interaktive Softwareanwendungen Sommersemester 2025</p>
</header>
<section>
<h2>Projektübersicht</h2>
<p>Hier dokumentiere ich meine Fortschritte und die Ergebnisse der einzelnen Meilensteine.</p>
<div style="background: #ffffff; padding: 1rem; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); border-left: 4px solid #4f46e5;">
<h3>Aktueller Status</h3>
<p><strong>Meilenstein 1:</strong> Grundgerüst der Webseite (Erledigt ✓)</p>
<p><strong>Meilenstein 2:</strong> JavaScript-Funktionalität (In Arbeit...)</p>
</div>
</section>
<section id="output-section">
<h2>Live-Ausgabe</h2>
<p>Hier werden zukünftige Skripte ihre Ergebnisse ausgeben:</p>
<div id="output" style="border: 1px dashed #cbd5e1; padding: 1rem; background: #fff; min-height: 50px;">
<em>Noch keine Daten vorhanden...</em>
</div>
</section>
<h2>Fotogalerie</h2>
<div class="galerie">
<img src="img/bild1.jpg" alt="Beschreibung Bild 1">
</div>
<script src="js/script.js"></script>
</main>
</body>
</html>