-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (40 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>UBikeFind</title>
<!--own files-->
<link rel="stylesheet" href="style.css">
<script src="./index.js" type="module"></script>
<!--favicon stuff-->
<link rel="apple-touch-icon" sizes="180x180" href="./assets/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./assets/favicon-16x16.png">
<link rel="manifest" href="./assets/site.webmanifest">
<!--external files-->
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="
crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js"
integrity="sha256-20nQCchB9co0qIjJZRGuk2/Z9VM+kNiyxNV1lvTlZBo="
crossorigin=""></script>
</head>
<body>
<header lang="en">
<p class="logo">UBikeFind 🚲</h1>
<p class="headline">Tired of running to empty UBike stations?<br> Check if there's bikes <span class="emphasis">before</span> you leave the house!</p>
</header>
<header lang="zh">
<p class="logo">UBikeFind 🚲</h1>
<p class="headline">出門前<span class="emphasis">先查</span>站否有車!</p>
</header>
<div id="map"></div>
<footer lang="en">
<p class="copyright">Copyright © 2024 mrshenyangyi@gmail.com</p>
</footer>
<footer lang="zh">
<p class="copyright">版權所有 © 2024 沈洋逸</p>
</footer>
</body>
</html>