-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScan.html
More file actions
124 lines (111 loc) · 3.59 KB
/
Scan.html
File metadata and controls
124 lines (111 loc) · 3.59 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scan — Huffles IT Services</title>
<style>
body {
background-color: #0A0A0A;
color: #FFFFFF;
font-family: 'Segoe UI', sans-serif;
padding: 40px 20px;
text-align: center;
}
h1, h2 {
color: #0F52BA;
margin-bottom: 20px;
}
.section {
margin-bottom: 60px;
}
table {
margin: 0 auto;
max-width: 1000px;
border-collapse: collapse;
width: 100%;
}
th, td {
border: 1px solid #0F52BA;
padding: 12px;
text-align: left;
background-color: #111111;
vertical-align: top;
}
th {
background-color: #0F52BA;
color: #FFFFFF;
}
td:first-child {
width: 250px;
white-space: nowrap;
}
footer {
margin-top: 60px;
font-size: 0.9em;
color: #FFFFFF;
}
.back-button {
display: inline-block;
margin-top: 20px;
padding: 12px 24px;
background-color: #0F52BA;
color: #FFFFFF;
text-decoration: none;
border-radius: 6px;
font-weight: bold;
}
.back-button:hover {
background-color: #FFFFFF;
color: #0F52BA;
}
</style>
</head>
<body>
<h1>Scan</h1>
<h2>QR Logic, Barcode Tools, and Scanner References</h2>
<div class="section">
<h2>🔳 QR Code Tools</h2>
<table>
<thead><tr><th>Tool</th><th>Platform</th><th>Purpose</th></tr></thead>
<tbody>
<tr><td>QRCode Monkey</td><td>Web</td><td>Generate custom QR codes with logos and colors</td></tr>
<tr><td>qrencode</td><td>Linux CLI</td><td>Create QR codes from terminal (e.g. `qrencode -o code.png 'text'`)</td></tr>
<tr><td>QRStuff</td><td>Web</td><td>Generate QR codes for URLs, text, email, and more</td></tr>
<tr><td>ZXing Decoder</td><td>Web</td><td>Decode QR codes from uploaded images</td></tr>
</tbody>
</table>
</div>
<div class="section">
<h2>📦 Barcode Types</h2>
<table>
<thead><tr><th>Type</th><th>Use Case</th><th>Notes</th></tr></thead>
<tbody>
<tr><td>UPC-A</td><td>Retail products</td><td>12-digit numeric, common in North America</td></tr>
<tr><td>EAN-13</td><td>International retail</td><td>13-digit numeric, used globally</td></tr>
<tr><td>Code 128</td><td>Shipping and logistics</td><td>High-density alphanumeric encoding</td></tr>
<tr><td>PDF417</td><td>ID cards, boarding passes</td><td>2D stacked barcode format</td></tr>
<tr><td>Data Matrix</td><td>Medical, electronics</td><td>Compact 2D barcode for small items</td></tr>
</tbody>
</table>
</div>
<div class="section">
<h2>🖨️ Scanner Compatibility</h2>
<table>
<thead><tr><th>Scanner</th><th>Supported Formats</th><th>Notes</th></tr></thead>
<tbody>
<tr><td>Honeywell Voyager</td><td>UPC, EAN, Code 128</td><td>Laser scanner for retail and POS</td></tr>
<tr><td>Zebra DS2208</td><td>1D & 2D (QR, PDF417)</td><td>Versatile handheld scanner</td></tr>
<tr><td>SocketScan S740</td><td>QR, Data Matrix, PDF417</td><td>Bluetooth scanner for mobile workflows</td></tr>
<tr><td>iPhone Camera</td><td>QR, some barcodes</td><td>Built-in scanner via Camera and Wallet apps</td></tr>
</tbody>
</table>
</div>
<footer>
<p>© 2025 Huffles IT Services LLC — All rights reserved.</p>
<p>
<a class="back-button" href="Huffles-IT-Services-Code-Reference.html">🖥️ Back to Porch</a>
</p>
</footer>
</body>
</html>