-
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) · 869 Bytes
/
index.html
File metadata and controls
39 lines (33 loc) · 869 Bytes
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="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="src/floats.css" />
</head>
<body>
<div id="inputs">
<label for="code">Code:</label>
<div id="code">
<input type="text" />
</div>
<label for="integer">Integer:</label>
<div id="integer">
<input type="text" value="0" />
</div>
<label for="hex">Hex:</label>
<div id="hex">
<input text="text" value="0" />
</div>
<label for="float">Float:</label>
<div id="float">
<input type="text" value="0" />
</div>
<label for="bytes">Bytes:</label>
<bytes-input id="bytes"></bytes-input>
<label for="bits">Bits:</label>
<bits-input id="bits"></bits-input>
</div>
<script type="module" src="/src/floats.ts"></script>
</body>
</html>