Files
icnsutil/html/viewer.html
2021-09-26 20:47:38 +02:00

14 lines
540 B
HTML
Executable File

<!DOCTYPE html>
<html ondrop="dropfile(event, 'input')" ondragover="event.preventDefault();">
<head>
<meta charset="utf-8">
<title>Icns Image Viewer</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<h1>Icns Image Viewer</h1>
<textarea id="input" name="data" rows="10" style="width: 98%;" placeholder="41524742 81000901 ... or drag-n-drop file" onkeyup="put_images_into(this, 'images')" autocomplete="off"></textarea>
<div id="images"></div>
</body>
</html>