-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhextractor.html
More file actions
executable file
·26 lines (26 loc) · 848 Bytes
/
hextractor.html
File metadata and controls
executable file
·26 lines (26 loc) · 848 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="hextractor.css" type="text/css" />
</head>
<body>
<div id="main">
<div id="start">
<textarea id="input">#feafea hola #fe0 #FFF adios #ffff #WEA</textarea>
<button id="button">Hextract!</button>
</div>
<div id="search">
<input id="color" type="text" />
<button id="search_button">Paint pointer!</button>
</div>
<div id="result">
</div>
<div id="pointer"></div>
</div>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="array.js"></script>
<script type="text/javascript" src="reg_exp.js"></script>
<script type="text/javascript" src="hextractor.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>