141 lines
No EOL
3.5 KiB
HTML
141 lines
No EOL
3.5 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
||
<title>Über uns – Studienprojekt 2026</title>
|
||
|
||
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
|
||
<link rel="stylesheet" href="css/style.css">
|
||
</head>
|
||
|
||
<script>
|
||
function toggleDarkMode() {
|
||
document.body.classList.toggle("dark");
|
||
|
||
if (document.body.classList.contains("dark")) {
|
||
localStorage.setItem("theme", "dark");
|
||
} else {
|
||
localStorage.setItem("theme", "light");
|
||
}
|
||
}
|
||
|
||
window.onload = function () {
|
||
if (localStorage.getItem("theme") === "dark") {
|
||
document.body.classList.add("dark");
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<body>
|
||
|
||
<nav>
|
||
<div class="nav-logo">🎓 Studienprojekt</div>
|
||
|
||
<ul class="nav-links">
|
||
<li><a href="index.html">Home</a></li>
|
||
<li><a href="ueber_uns.html">Über uns</a></li>
|
||
<li><a href="eis_projekt.html">Projekt</a></li>
|
||
|
||
<!-- NEU -->
|
||
<li><a href="notenrechner.html">Notenrechner</a></li>
|
||
<li><a href="textanalyse.html">Textanalyse</a></li>
|
||
|
||
<li><a href="kontakt.html">Kontakt</a></li>
|
||
<li><a href="impressum.html">Impressum</a></li>
|
||
</ul>
|
||
<button id="dark-mode-toggle">🌙 Dark Mode</button>
|
||
</nav>
|
||
|
||
<section class="hero">
|
||
|
||
<div class="hero-content">
|
||
|
||
<div class="hero-tag">👥 Unser Team</div>
|
||
|
||
<h1>
|
||
Anni & Lea<br>
|
||
<span>Studienprojekt 2026</span>
|
||
</h1>
|
||
|
||
<p>
|
||
Wir sind Anni und Lea und studieren Medien- und Bildungsmanagement.
|
||
Gemeinsam arbeiten wir an einem kreativen Studienprojekt, das Design,
|
||
digitale Medien und Forschung verbindet.
|
||
</p>
|
||
|
||
</div>
|
||
|
||
</section>
|
||
|
||
<section>
|
||
|
||
<div class="section-label">Über uns</div>
|
||
<h2 class="section-title">Wer wir sind</h2>
|
||
|
||
<p class="section-sub">
|
||
Zwei kreative Köpfe mit unterschiedlichen Stärken, aber einer gemeinsamen Leidenschaft für Medien, Gestaltung und digitale Projekte.
|
||
</p>
|
||
|
||
<div class="stats-row">
|
||
|
||
<div class="stat-card">
|
||
<span class="stat-num">Anni</span>
|
||
<span class="stat-label">Medien, Fotografie, Katzen, kreative Online-Medien</span>
|
||
</div>
|
||
|
||
<div class="stat-card">
|
||
<span class="stat-num">Lea</span>
|
||
<span class="stat-label">Design, Tanzen, Zeichnen, Lesen, Kreativität</span>
|
||
</div>
|
||
|
||
<div class="stat-card">
|
||
<span class="stat-num">2026</span>
|
||
<span class="stat-label">Studienprojekt</span>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
</section>
|
||
|
||
<section>
|
||
|
||
<div class="section-label">Profile</div>
|
||
<h2 class="section-title">Unsere Stärken</h2>
|
||
|
||
<div class="gallery-grid">
|
||
|
||
<div class="gallery-card">
|
||
<div style="padding: 2rem;">
|
||
<h3>👩💻 Anni</h3>
|
||
<p style="margin-top: 1rem; color: var(--muted); line-height: 1.7;">
|
||
Anni interessiert sich besonders für Fotografie, Social Media,
|
||
digitale Medien und kreative Gestaltung. Außerdem liebt sie Katzen,
|
||
liest gerne und arbeitet gerne visuell und strukturiert.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="gallery-card">
|
||
<div style="padding: 2rem;">
|
||
<h3>🎨 Lea</h3>
|
||
<p style="margin-top: 1rem; color: var(--muted); line-height: 1.7;">
|
||
Lea bringt kreative Ideen ins Projekt ein und liebt Design,
|
||
Zeichnen und Tanz. Sie liest viel und entwickelt gerne neue
|
||
visuelle Konzepte und kreative Ansätze.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
</section>
|
||
|
||
<footer>
|
||
© 2026 Studienprojekt · Anni & Lea
|
||
</footer>
|
||
|
||
</body>
|
||
<script src="js/script.js"></script>
|
||
</html> |