-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
37 lines (31 loc) · 888 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
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>Barcode Lookup</title>
<link rel="stylesheet" type="text/css" href="barcode.css" />
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body class="preload">
<div id="main">
<h1>Barcode Lookup</h1>
<input autofocus id="barcode" type="number" />
<div id="results">
<p id="links">
<a id="show-ean-link"></a>
<a id="checksum"></a>
</p>
<img src="" alt="" id="image" width="360" height="250"/>
<p id="country"></p>
<canvas id="canvas" width="360" height="250"></canvas>
</div>
<div id="error">
12 (for UPC) or 13 (for EAN) digits, please.
</div>
<footer>
© 2013 <a href="https://twitter.com/Dremora">Kirill Korolyov</a> |
<a href="https://github.com/Dremora/barcode-lookup">source</a>
</footer>
</div>
<script src="barcode-min.js"></script>
</body>
</html>