-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (26 loc) · 830 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Manual KIX Decoder</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='style.css'>
</head>
<body>
<div id="wrapper">
<div id="topbtns" class="btnblock"></div>
<div class="display">
<div id="dp-kix">0</div><div id="dp-result">0</div>
</div>
<div id="botbtns" class="btnblock"></div>
<div id="controls">
<input type="text" id="buffer">
<button class="ctrlbtn" onclick="clearbuffer()">Clear</button>
<button class="ctrlbtn" onclick="addchar()">Add</button>
<button class="ctrlbtn" onclick="reset()">Reset</button>
</div>
</div>
</body>
<script src='script.js'></script>
</html>