54 lines
1.1 KiB
HTML
54 lines
1.1 KiB
HTML
<!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>© 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>
|
||
|