-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 959 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="pt">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, height=device-height" />
<meta name="theme-color" content="rgb(39, 115, 201)" /> <!-- needed? -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<span>Kai STCP</span>
</header>
<div id="mainContainer">
<form id="idInputForm">
<input id="idInput" placeholder="Código da paragem" type="text">
</form>
<div id="selectContainer">
<select id="lines" data-selected="false">
<option>---</option>
</select>
<select id="directions" data-selected="false">
<option>---</option>
</select>
<select id="stops" data-selected="false">
<option>---</option>
</select>
</div>
<ul id="busList">
</ul>
<div id="loaderContainer">
<div id="loader"></div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>