-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (78 loc) · 2.7 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
/>
<meta name="theme-color" content="#080808" />
<meta
name="google-site-verification"
content="R7gSzU1VAjotyZL3PfLSZCXCyYlR0r5b4fctvJSDg8c"
/>
<meta name="Description" content="Bus Schedule App for ZTM Gdansk" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"
integrity="sha512-+4zCK9k+qNFUR5X+cKL9EIR+ZOhtIloNl9GIKS57V1MyNsYpYcUrUeQc9vNfzsWfV28IaLL3i96P9sdNyeRssA=="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/searchStyle.css" />
<link rel="icon" type="image/png" href="Assets/Dog.png" />
<link rel="apple-touch-icon" href="Assets/hots192Black.png" />
<link rel="manifest" href="manifest.json" />
<title>Closer</title>
</head>
<body>
<nav class="nav">
<div class="logo">
<h4>Closer</h4>
</div>
<ul class="nav-links">
<li><a href="#">Search</a></li>
<li><a href="views/directSearch.html">Direct Search</a></li>
<li><a href="views/localSearch.html">Local Search</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<section class="section">
<form autocomplete="off">
<div class="autocomplete">
<input type="text" class="stop-input" placeholder="Search" />
<button class="submit-button" type="submit">
<i class="fas fa-search"></i>
</button>
</div>
</form>
<div class="stop-container">
<ul class="stop-list">
<div class="offline indicator">
<span class="header">It looks like you're offline.</span>
<span class="footer"
>The app will continue to work, but you won't get any new data
from the internet until you reconnect.</span
>
</div>
</ul>
</div>
</section>
<script src="modules/DragDropTouch.js"></script>
<script src="modules/latinize.js"></script>
<script src="modules/autocomplete.js"></script>
<script src="modules/navSlide.js"></script>
<script src="modules/dragAndDrop.js"></script>
<script src="modules/time.js"></script>
<script src="modules/shortener.js"></script>
<script src="js/app.js"></script>
</body>
</html>