-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetail.html
54 lines (49 loc) · 1.7 KB
/
detail.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="detail.css">
<title>Detail</title>
<script src="lib/vue.min.js"></script>
<script src="resource/data.js"></script>
</head>
<body>
<header id="header">
<img src="resource/logo.png" style="height: 1em; margin: .2em;" alt="官網LOGO">
<span>MO LIBRARY</span>
</header>
<main>
<section id="main">
<img src="resource/books.svg" alt="一個包含一些書的logo" id="logo">
<h1>{{lib_name}}</h1>
<p>
<span>地址:</span>{{address}} <br>
<span>電話:</span>{{phone_num}} <br>
<span>傳真:</span>{{fax}} <br>
<span>開放時間:</span>{{open_time}} <br>
</p>
</section>
<section id="location">
<div id="map">
<div class="loading"></div>
</div>
</section>
</main>
<section id="nav">
</section>
<footer id="footer">
<img src="resource/logo-text.png" alt="公共圖書館官網的logo">
<p>
<span>地址</span>: 澳門崗頂前地3號 <br>
<span>電話</span>: (853)2856 7576 / (853)2837 7117 <br>
<span>傳真</span>: (853)2831 4456 <br>
<span>電郵</span>: [email protected]<br>
</p>
</footer>
<script src="detail.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBGXBh6UParrXwI8Wjxip795UhqZd4htmQ&callback=initMap"
async defer></script>
</body>
</html>