-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsSandbox.html
61 lines (57 loc) · 1.31 KB
/
jsSandbox.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
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>jsSandbox</title>
<script type="text/javascript" charset="utf-8">
</script>
<style type="text/css">
table, td, th {
border: solid;
}
</style>
</head>
<body>
<a id = "pageTop"></a>
<h1>JavaScript sandbox</h1>
<a href="index.html">back to "AboutMe" page</a>
<hr>
<dl>
<h2>Date calculation</h2>
<!-- <dd>
javascript sandbox.<br>
</dd> -->
<div id="now">Today:</div>
<table>
<tr>
<th>Service</th>
<th>RegistrationDate</th>
<th>elapsedTime</th>
</tr>
<tr>
<td>VRChat</td>
<td><div id="begin_vrc"></div></td>
<td><div id="time_vrc"></div></td>
</tr>
<tr>
<td>Twitter</td>
<td><div id="begin_twitter"></div></td>
<td><div id="time_twitter"></div></td>
</tr>
</table>
</dl>
<br>
<br>
<script src="./src/elapsedTimeCalc.js"></script>
<!-- <script type="text/javascript" charset="utf-8"></script> -->
<!-- <dl>
<h2>title</h2>
<dd>
hogehoge.<br>
</dd>
</dl> -->
<a href = "#pageTop">page top</a>
<br><br>
<hr>
</body>
</html>