25 lines
605 B
HTML
25 lines
605 B
HTML
<header>
|
||
|
||
<!-- In the <head> of every page -->
|
||
<link rel="icon" href="img/favicon.png" type="image/png">
|
||
|
||
<!-- Logo in header -->
|
||
<img src="./img/Logo.png" alt="Logo" style="height: 100px;">
|
||
<link rel="stylesheet" href="css/style.css">
|
||
<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>
|
||
<!-- Page content here -->
|
||
<p> Student: Tahar und Thereza</p>
|
||
</main>
|
||
|
||
<footer>
|
||
<p>© 2025 – EIS Learning Project</p>
|
||
</footer>
|