v0.1
This commit is contained in:
commit
e52aacbf28
24 changed files with 2546 additions and 0 deletions
48
index.html
Normal file
48
index.html
Normal file
|
@ -0,0 +1,48 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<link href="style.css" rel="stylesheet">
|
||||
<title>A11y Elevator List</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>A11y Elevator List</h1>
|
||||
<nav>
|
||||
<ul>
|
||||
<li>
|
||||
<a href="index.html">
|
||||
Elevator List
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="about.html">
|
||||
What is this?
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
<main>
|
||||
<h2>Station List</h2>
|
||||
<div>
|
||||
<span>Last Updated: <b id="lastUpdated"></b></span>
|
||||
<button id="loadElevators">Daten vom HVV abrufen</button>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
<div class="filters">
|
||||
<input placeholder="Station suchen" id="searchStation">
|
||||
<button id="stationsNearMe">
|
||||
<span data-icon="location-searching" class="size-m"></span>
|
||||
Stationen in der Nähe
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<ul id="stationList">
|
||||
</ul>
|
||||
</main>
|
||||
<script type="text/javascript" src="elevators.js"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue