38 lines
1.0 KiB
HTML
38 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Farbhelfer</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Farbhelfer</h1>
|
|
<nav>
|
|
<button class="tab-btn active" data-tab="picker">Picker</button>
|
|
<button class="tab-btn" data-tab="eingabe">Eingabe</button>
|
|
<button class="tab-btn" data-tab="harmonien">Harmonien</button>
|
|
<button class="tab-btn" data-tab="sammlung">Sammlung</button>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<section id="tab-picker" class="tab-content active">
|
|
<p>Picker kommt hier</p>
|
|
</section>
|
|
<section id="tab-eingabe" class="tab-content">
|
|
<p>Eingabe kommt hier</p>
|
|
</section>
|
|
<section id="tab-harmonien" class="tab-content">
|
|
<p>Harmonien kommen hier</p>
|
|
</section>
|
|
<section id="tab-sammlung" class="tab-content">
|
|
<p>Sammlung kommt hier</p>
|
|
</section>
|
|
</main>
|
|
|
|
<script type="module" src="js/app.js"></script>
|
|
</body>
|
|
</html>
|