-
Notifications
You must be signed in to change notification settings - Fork 3
/
raining.html
46 lines (43 loc) · 1.21 KB
/
raining.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>雨量觀測</title>
<!-- 建立整體樣式指導:基礎字型、字體、基底色、標題、段落樣式等等 -->
<link rel="stylesheet" type="text/css" href="css/common.css" />
<!-- 建立雨量觀測部份的樣式 -->
</head>
<body class="grid">
<div class="A1">
<p class="titleText">降雨資訊</p>
</div>
<div class="A2">
<h1>Project Weather</h1>
<nav>
<a class="navText" href="weather.html">近日預測</a>
<a class="navText" href="raining.html">降雨資訊</a>
<a class="navText" href="uv.html">紫外光照</a>
</nav>
</div>
<div class="A3"></div>
<div class="B1"></div>
<div class="B2"></div>
<div class="B3">
<!-- <h2>33.5</h2>
<h3>今日雨量</h3>
<h3>2021/06/11</h3>
<p class="bodyText">初夏梅雨滂沱</p> -->
</div>
<div class="B4"></div>
<div class="C1"></div>
<div class="C2"></div>
<div class="C3"></div>
<div class="C4"></div>
<script>
const CWB_API_KEY="CWB-2EF6C203-2256-404D-AD80-5E9DE0982C6A";
</script>
<script src="js/raining.js"></script>
</body>
</html>