eis-website/eis_project.html
Theresa Nerz & Tahar Lamred 7821e4a1f0 Erste Version der Website
2026-05-08 15:49:50 +00:00

31 lines
800 B
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.

<header>
<!-- In the <head> of every page -->
<link rel="icon" href="img/favicon.png" type="image/png">
<link rel="stylesheet" href="css/style.css">
<!-- 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>
</nav>
</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>