-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 1.54 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta http-equiv="Content-Security-Policy" content="default-src * data: gap: content: https://ssl.gstatic.com; style-src * 'unsafe-inline'; script-src * 'unsafe-inline' 'unsafe-eval'">
<!--
<script src="components/loader.js"></script>
<link rel="stylesheet" href="components/loader.css">
<link rel="stylesheet" href="css/style.css">
-->
<script src="dist/main.js" async>
</script>
</head>
<body>
<h1>気象庁の天気予報WebAPI経由で表示<br>東京の詳細</h1>
<table>
<tr id="publishingOffice">
<th>発表者</th>
<td></td>
</tr>
<tr id="reportDatetime">
<th>報告日時</th>
<td></td>
</tr>
<tr id="targetArea">
<th>対象地域</th>
<td></td>
</tr>
<tr id="today">
<th>今日の天気</th>
<td></td>
</tr>
<tr id="tomorrow">
<th>明日の天気</th>
<td></td>
</tr>
<tr id="dayAfterTomorrow">
<th>明後日の天気</th>
<td></td>
</tr>
<tr>
<tr id="weatherCodes">
<th>weatherCodes</th>
<div id="weatherImage" style="width: 100px; height: 100px; border: 1px solid black;"></div>
<td></td>
</tr>
</tr>
</table>
</body>
</html>