eis-website/eis_project.html
Theresa Nerz & Tahar Lamred c0544aae3d Dark Mode überall eingebaut
2026-06-02 15:33:34 +00:00

34 lines
946 B
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.

<header>
<!-- In the <head> of every page -->
<link rel="icon" href="img/favicon.png" type="image/png">
<link rel="stylesheet" href="css/style.css">
<script src="js/script.js" defer></script>
<!-- Logo in header -->
<img src="./img/Logo.png" alt="Logo" style="height: 100px;">
<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>
<li><a href="notenrechner.html">Notenrechner</a></li>
</nav>
<button id="dark-mode-toggle">Dark Mode</button>
</header>
<main>
c <!-- Page content here --><P> Unser Project SoSe 2026
<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>