-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.36 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="icon" href="assets/favicon.0.ico">
<link rel="stylesheet" href="assets/index.css">
<title>Clock</title>
</head>
<body>
<div id="wrapper">
<div id="clockContainer">
<p id="clockBG" class="clock">
<span class="clock-hm">~~:~~</span>
<span class="clock-sec">~~</span>
</p>
<p id="clock" class="clock">
<span id="clockHM" class="clock-hm"></span>
<span id="clockSec" class="clock-sec"></span>
</p>
</div>
</div>
<div id="configuration">
<a id="btnConfiguration" href="#">
<i class="fa-solid fa-gear"></i>
<span class="invisible">Configuration</span>
</a>
<div id="configurationBox">
Clock rev1.
<a href="https://github.com/h-izumi/clock" target="_blank">
about
</a>
</div>
</div>
<script type="text/javascript" src="scripts/index.js" defer></script>
<script src="https://kit.fontawesome.com/28febb2f9e.js" crossorigin="anonymous"></script>
</body>
</html>