-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (44 loc) · 2.14 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
52
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>kouhei-1 - Tools</title>
<link rel="stylesheet" href="style.css" type="text/css">
<!--font-->
<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=Rajdhani:wght@500;700&display=swap" rel="stylesheet">
<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+JP:[email protected]&family=Rajdhani:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<!--font-->
</head>
<body>
<!--
class:
home: ホームのリンク
link: 子ページに飛ぶリンク
desc: linkの説明
-->
<a href=".." class="home">Home</a>
<h1>Tools</h1>
<a class="link" href="./Time.html">Time</a><br>
<h6 class="desc">現地時間や世界協定時などを表示させます</h6><br>
<a class="link" href="./UNIXtoTIME.html">UnixTime to UTCTime</a><br>
<h6 class="desc">UNIXtimeを記入するとUTCtimeとして出力されます</h6><br>
<a class="link" href="./Time_display.html">Time Display</a><br>
<h6 class="desc">シンプルな画面で現地時間を表示します</h6><br>
<a class="link" href="./ChangeExtension.html">Change the extension(Only ext.)</a><br>
<h6 class="desc">ファイル拡張子を変更します</h6><br>
<a class="link" href="./text_encoder.html">text encoder/decoder</a><br>
<h6 class="desc">Base64, UTF-8 でエンコード/デコードします</h6><br>
<a class="link" href="./file_editor.html">file editor</a><br>
<h6 class="desc">ファイルの内部を見ます</h6><br>
<a class="link" href="../Earthquake_map">Japan 3D earthquake map</a><br>
<h6 class="desc">日本の震源地を3D表示させます</h6><br>
<!--limited-->
<HR>
<a class="link" href="./limited.html">Limited</a><br>
<h6 class="desc">その他専門的なツール</h6><br>
</body>
</html>