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

54 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="en">
<head>
<meta charset="UTF-8">
<title>Your Page Title</title>
<link rel="icon" href="img/favicon.png" type="image/png">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<!-- Centered Logo -->
<div class="logo-container">
<img src="./img/Logo.png" alt="Logo">
</div>
<!-- Navigation Bar -->
<nav>
<div class="nav-links">
<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>
</div>
<button id="dark-mode-toggle">Dark Mode</button>
</nav>
</header>
<main>
<!-- Your page content goes here -->
<p>Welcome to the page!</p>
</main>
<footer>
<p>&copy; 2026 EIS Learning Project</p>
</footer>
<script>
const toggle = document.getElementById('dark-mode-toggle');
toggle.addEventListener('click', () => {
document.body.classList.toggle('dark');
});
</script>
</body>
</html>