Header & working Dark Mode

This commit is contained in:
Patrick Schwarzer 2025-05-09 23:34:17 +02:00
parent 82e879c137
commit 0eda5a90e4
3 changed files with 163 additions and 3 deletions

View file

@ -3,9 +3,38 @@
<!doctype html>
<html>
<head>
<title>Tarions Portfolio</title>
<title>Tarions Portfolio</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
testing123 once again surely now
<body class="light-mode">
<header>
<nav>
<div class="logo">
<a href="#">Tarion</a>
</div>
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">Showcase</a>
</li>
<li>
<a href="#">About</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
<button id="dark-mode-toggle" class="dark-mode-toggle">☀️</button>
</nav>
</header>
<main>
</main>
<script src="script.js"></script>
</body>
</html>