feat: Grundstruktur mit Tab-Navigation
This commit is contained in:
37
index.html
Normal file
37
index.html
Normal file
@@ -0,0 +1,37 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user