eis-website/index.html
2026-06-18 10:48:24 +02:00

50 lines
1 KiB
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.

<!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="quiz.html">Quiz</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>
<!-- Begrüßung -->
<p id="begruessung"></p>
<p>Welcome to the page!</p>
</main>
<footer>
<p>&copy; 2026 EIS Learning Project</p>
</footer>
<!-- Externe script.js -->
<script src="js/script.js"></script>
</body>
</html>