44 lines
1.1 KiB
HTML
44 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>EIS Project – SoSe 2026</title>
|
||
<link rel="icon" href="img/favicon.png" type="image/png">
|
||
<link rel="stylesheet" href="css/style.css">
|
||
<script src="js/script.js" defer></script>
|
||
</head>
|
||
|
||
<body>
|
||
<header>
|
||
<div class="logo-container">
|
||
<img src="img/Logo.png" alt="Logo" class="logo">
|
||
</div>
|
||
|
||
<nav>
|
||
<a href="index.html">Home</a>
|
||
<a href="about_us.html">About Us</a>
|
||
<a href="eis_project.html">Project</a>
|
||
<a href="contact.html">Contact</a>
|
||
<a href="imprint.html">Imprint</a>
|
||
<a href="notenrechner.html">Notenrechner</a>
|
||
<button id="dark-mode-toggle">Dark Mode</button>
|
||
</nav>
|
||
</header>
|
||
|
||
<main>
|
||
<p>Unser Project SoSe 2026</p>
|
||
<h2>Fotogalerie</h2>
|
||
|
||
<div class="galerie">
|
||
<img src="img/bild1.jpg" alt="Mein Bild">
|
||
<img src="img/bild2.jpg" alt="Beschreibung Bild 2">
|
||
<img src="img/bild3.jpg" alt="Beschreibung Bild 3">
|
||
</div>
|
||
</main>
|
||
|
||
<footer>
|
||
<p>© 2026 – EIS Learning Project</p>
|
||
</footer>
|
||
</body>
|
||
</html>
|