feat: project scaffold with tabs, styles and package.json
This commit is contained in:
29
index.html
Normal file
29
index.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Morning Meeting Planner</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<script src="https://cdn.sheetjs.com/xlsx-0.20.3/package/dist/xlsx.full.min.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Morning Meeting Planner</h1>
|
||||
</header>
|
||||
|
||||
<nav class="tabs">
|
||||
<button class="tab-btn active" data-tab="employees">Mitarbeiter</button>
|
||||
<button class="tab-btn" data-tab="planning">Monatsplanung</button>
|
||||
<button class="tab-btn" data-tab="data">Daten</button>
|
||||
</nav>
|
||||
|
||||
<main>
|
||||
<section id="tab-employees" class="tab-content"></section>
|
||||
<section id="tab-planning" class="tab-content hidden"></section>
|
||||
<section id="tab-data" class="tab-content hidden"></section>
|
||||
</main>
|
||||
|
||||
<script type="module" src="js/app.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user