eis-website/ueber_uns.html

114 lines
3.9 KiB
HTML
Raw Permalink 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">
<meta name="description" content="Über uns - Entwicklung interaktiver Softwareanwendungen">
<title>Über uns EIS Projekt</title>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="img/logo.png" type="image/png">
</head>
<body>
<header>
<div class="header-container">
<div class="logo">
<img src="img/logo.png" alt="Logo">
<div class="logo-text">
<span class="institution">David & Karo</span>
<span class="project">EIS Projekt</span>
</div>
</div>
<!-- Dark Mode Toggle Button -->
<button id="dark-mode-toggle" type="button" class="dark-mode-toggle" title="Dark Mode aktivieren">
<span class="dark-mode-icon">🌙</span>
</button>
<nav>
<a href="index.html">Start</a>
<a href="ueber_uns.html" class="active">Über uns</a>
<a href="eis_projekt.html">Projekt</a>
<a href="team.html">Team</a>
<a href="galerie.html">Galerie</a>
<a href="notenrechner.html">Notenrechner</a>
<a href="textanalyse.html">Textanalyse</a>
<a href="kontakt.html">Kontakt</a>
<a href="impressum.html">Impressum</a>
</nav>
</div>
</header>
<main>
<section class="hero">
<h1>Über uns</h1>
<p>David & Karo zwei kreative Köpfe, ein großes Projekt 💕</p>
</section>
<section>
<h2>💡 Das Projekt</h2>
<p><strong>Entwicklung interaktiver Softwareanwendungen</strong> das ist unser ding! Wir bauen innovative digitale Lösungen mit modernen Technologien.</p>
<p>Unser Fokus:</p>
<ul>
<li>💻 Frontend-Magie mit HTML, CSS und JavaScript</li>
<li>📱 Responsive & mobile-first Design</li>
<li>⚡ Interaktive User Experiences</li>
<li>🚀 Backend-Power mit Python & Co.</li>
<li>🎯 Clean Code & Best Practices</li>
</ul>
</section>
<section>
<h2>👯‍♀️ Wer wir sind</h2>
<div class="cards">
<div class="card">
<h3>David</h3>
<p>Full-Stack Developer mit Leidenschaft für coole Interfaces und saubere Code-Architektur.</p>
<p><strong>Skills:</strong> JavaScript, Python, Design</p>
</div>
<div class="card">
<h3>Karo</h3>
<p>Creative Developer, die Kreativität mit Technik verbindet und magische Momente schafft.</p>
<p><strong>Skills:</strong> UX/UI, Frontend, Animation</p>
</div>
</div>
</section>
<section>
<h2>🚀 Projektstruktur</h2>
<p>Unser Projekt wächst in mehreren Phasen:</p>
<div class="cards">
<div class="card">
<h3>Phase 1: Foundation</h3>
<p>Solide Basis mit HTML, CSS und erste JavaScript-Interaktionen</p>
</div>
<div class="card">
<h3>Phase 2: Styling & Magic</h3>
<p>Design-Verfeinerung, Animationen und coolere JS-Features</p>
</div>
<div class="card">
<h3>Phase 3: Full Stack</h3>
<p>Backend-Integration mit Python und Datenbanken</p>
</div>
<div class="card">
<h3>Phase 4+: Advanced</h3>
<p>APIs, Authentifizierung, erweiterte Funktionen</p>
</div>
</div>
</section>
<section>
<h2>💡 Vision</h2>
<p>Wir glauben an innovativen Code, durchdachtes Design und die Kraft von Technologie, um Ideen zum Leben zu erwecken. Unser Ziel: Websites und Apps, die nicht nur funktionieren, sondern auch die User zum Lächeln bringen.</p>
</section>
</main>
<footer>
<p>&copy; 2026 Made with 💕 & David & Karo</p>
<div class="footer-links">
<a href="impressum.html">Impressum</a>
<a href="kontakt.html">Kontakt</a>
<a href="#">Datenschutz</a>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>