-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (32 loc) · 1.32 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
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hex Editor</title>
<div>Notes:</div>
<div>- Dont try large files (50KB+) or you will be waiting a long time/will never load due to high ram usage</div>
<div>- If you encounter any issues or suggestions, please report them <a href="https://github.com/PollyThePancake/HTML-HexEditor/issues">here</a></div>
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="script.js"></script>
</head>
<body>
<h1>Hex Editor</h1>
<button id="loadButton" class="button">Load file</button>
<button id="saveButton" class="button">Save file</button>
<input type="checkbox" id="autoByte" value="automatically move onto the next byte" checked="true">
<label for="autoByte">Automatically move onto the next byte</label><br>
<table class="hexEditor" border>
<!-- Table Headers -->
<tr class="headers">
<td id="offsetHeader">Offset</td>
<td><table id="hexHeader"></table></td>
<td id="chrHeader">ASCII</td>
</tr>
<!-- Table Contents -->
<tr class="tables">
<td><table id="off"><td>00000000</td></table></td>
<td><table id="hex"><td>00</td></table></td>
<td><table id="chr"><td>.</td></table></td>
</tr>
</table>
</body>
</html>