-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (21 loc) · 834 Bytes
/
index.html
File metadata and controls
26 lines (21 loc) · 834 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta charset="utf-8" />
<title>早安!台灣氣象</title>
<script src="js/NavBar.js"></script>
<link rel="stylesheet" type="text/css" href="css/NavBar.css" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<nav-bar></nav-bar>
<div class="title">台灣縣市即時天氣狀況</div>
<hr class="hrstyle" />
<div class="indexcontainor"></div>
<script src="js/index.js"></script>
</body>
</html>