adding timetable

This commit is contained in:
Tobi 2023-06-20 16:36:08 +02:00
parent 4078fce05f
commit 36a4877f05
4 changed files with 309 additions and 0 deletions

28
timetable/index.html Normal file
View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Event Timetable</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="timetable">
<h1 id="headline">Headline Placeholder</h1>
<h2 id="subheadline">Subheadline Placeholder</h2>
<div id="slider-container">
<input type="range" min="0" max="4" value="0" id="slider" />
<div id="slider-day"></div>
<p id="slider-text">Slide to view other days</p>
</div>
<div id="tables-container"></div>
</div>
<div id="overlay"></div>
<script src="eventData.js"></script>
<script src="scripts.js"></script>
</body>
</html>