-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (33 loc) · 1.09 KB
/
index.html
File metadata and controls
39 lines (33 loc) · 1.09 KB
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="icon.jpg" type="image/jpeg">
<title>eqinfo</title>
<link rel="stylesheet" href="index.css">
<script src="https://cdn.jsdelivr.net/npm/@unocss/runtime"></script>
</head>
<body>
<!-- ヘッダー -->
<div class="header glass">
<div class="spin-slow">🌍</div>
<h1>最新の地震・津波情報</h1>
</div>
<!-- タブメニュー -->
<div class="tab-menu glass">
<button class="tab-button active" data-tab="earthquake">地震情報</button>
<button class="tab-button" data-tab="tsunami">津波情報</button>
</div>
<!-- 地震情報 -->
<div id="earthquake-info" class="info-tab glass">
<p>地震情報を取得中...</p>
</div>
<!-- 津波情報 -->
<div id="tsunami-info" class="info-tab glass">
<p>津波情報を取得中...</p>
</div>
<footer>Developer By Kaede</footer>
<script src="script.js"></script>
</body>
</html>