-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
40 lines (30 loc) · 950 Bytes
/
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
<html lang='en'>
<head>
<meta charset='utf-8'>
<style>
:root {
font-family: sans-serif;
}
h1 {
font-size: 1.25rem;
}
input {
font-family: monospace;
}
</style>
<script type='module' src='./01-to-02.js'></script>
<script type='module' src='./02-to-03.js'></script>
</head>
<body>
This tool does not validate input. Invalid input may produce unexpected and/or invalid output.
<h1>Convert format description from time 0.1 to time 0.2</h1>
v0.1 <input id='v01-in' size='80'><br>
v0.2 <input id='v02-out' size='80' readonly>
<h1>Convert format description from time 0.2 to time 0.3</h1>
v0.2 <input id='v02-in' size='80'><br>
v0.3 <input id='v03-out' size='80' readonly><br>
<br>
Compatibility note: <code>%C</code> has no equivalent in time 0.3. Any use of this component is
omitted.
</body>
</html>