eis-website/eis_project.html
Tahar Lamred & Theresa Nerz bc084a5b8a First changes with VS
2026-06-08 16:13:08 +02:00

44 lines
1.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 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>&copy; 2026 EIS Learning Project</p>
</footer>
</body>
</html>