eis-website/eis_projekt.html

134 lines
No EOL
4.3 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>Projekt - EIS</title>
<link rel="icon" href="img/favicon.png" type="image/png">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<nav class="navbar">
<div class="nav-container">
<div class="logo">EIS Projekt</div>
<ul class="nav-menu">
<li><a href="index.html">Start</a></li>
<li><a href="ueber_uns.html">Über uns</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="eis_projekt.html" class="active">Projekt</a></li>
<li><a href="kontakt.html">Kontakt</a></li>
<li><a href="impressum.html">Impressum</a></li>
<li style="position: relative;">
<a href="#" style="padding: 0.4rem 0.8rem;">Übungen ▼</a>
<ul style="position: absolute; top: 100%; left: 0; background: rgba(0, 0, 0, 0.1); border-radius: 8px; min-width: 200px; list-style: none; padding: 0.5rem 0; margin: 0.5rem 0 0 0; display: none;">
<li><a href="notenrechner.html" style="display: block; padding: 0.5rem 1rem; white-space: nowrap;">Notenrechner</a></li>
<li><a href="textanalyse.html" style="display: block; padding: 0.5rem 1rem; white-space: nowrap;">Textanalyse</a></li>
<li><a href="notenrechner-dom.html" style="display: block; padding: 0.5rem 1rem; white-space: nowrap;">Notenrechner (DOM)</a></li>
</ul>
</li>
<li><a href="assets/projektinfo.pdf" download class="btn-download">PDF ↓</a></li>
<li><button id="dark-mode-toggle">🌙 Dark Mode</button></li>
</ul>
<div class="hamburger">
<span></span>
<span></span>
<span></span>
</div>
</div>
</nav>
</header>
<main>
<section class="page-header">
<h1>EIS Projekt</h1>
<p>Entwicklung interaktiver Softwareanwendungen</p>
</section>
<section class="content-section">
<h2>Projektübersicht</h2>
<p>Das EIS-Projekt ist ein umfassendes Lernprojekt zur Entwicklung interaktiver Web-Anwendungen. Ziel dieses Projekts ist es, Studierenden praktische Erfahrungen mit modernen Web-Technologien zu vermitteln.</p>
</section>
<section class="content-section">
<h2>Projektmerkmale</h2>
<ul class="feature-list">
<li>Responsive Design für alle Geräte</li>
<li>Interaktive Benutzeroberfläche</li>
<li>Formularvalidierung mit JavaScript</li>
<li>Moderne CSS3-Styling</li>
<li>Suchmaschinenoptimierung (SEO)</li>
<li>Barrierefreier Zugang (Accessibility)</li>
</ul>
</section>
<section class="content-section">
<h2>Technologie Stack</h2>
<div class="tech-grid">
<div class="tech-card">
<h3>Frontend</h3>
<ul>
<li>HTML5</li>
<li>CSS3</li>
<li>JavaScript (ES6+)</li>
</ul>
</div>
<div class="tech-card">
<h3>Design</h3>
<ul>
<li>Responsive Layout</li>
<li>Mobile-First Approach</li>
<li>Moderne UI/UX</li>
</ul>
</div>
<div class="tech-card">
<h3>Tools</h3>
<ul>
<li>Git für Versionskontrolle</li>
<li>VS Code als Editor</li>
<li>Browser Developer Tools</li>
</ul>
</div>
</div>
</section>
<section class="content-section">
<h2>Lernziele</h2>
<ol class="learning-goals">
<li>Verständnis der Web-Standards und Best Practices</li>
<li>Fähigkeit zur Erstellung responsiver Websites</li>
<li>JavaScript für interaktive Funktionalität</li>
<li>Zusammenarbeit im Team und Versionskontrolle</li>
<li>Deployment und Hosting von Web-Anwendungen</li>
</ol>
</section>
</main>
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>Kontakt</h3>
<p>E-Mail: <a href="mailto:info@beispiel.de">info@beispiel.de</a></p>
</div>
<div class="footer-section">
<h3>Links</h3>
<ul>
<li><a href="impressum.html">Impressum</a></li>
<li><a href="ueber_uns.html">Über uns</a></li>
</ul>
</div>
<div class="footer-section">
<p>&copy; 2025 EIS Lernprojekt an der PH Weingarten</p>
</div>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>