-
Notifications
You must be signed in to change notification settings - Fork 12
/
types.html
executable file
·79 lines (66 loc) · 2.23 KB
/
types.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
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
<html>
<!--
types.html
BarcodeAPI.org, 2017-2024
-->
<head>
<title>BarcodeAPI.org - API Docs</title>
<meta name="keywords"
content="barcode, barcode api, barcode app, barcode generator, download barcode, free barcodes, custom barcodes">
<meta name="description"
content="Free online barcode generator! Scan barcodes in the web browser or download the images for free!">
<link rel="icon" type="image/png" href="/ext/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/ext/3p/flexboxgrid.min.css" />
<link rel="stylesheet" type="text/css" href="/ext/css/layout.css" />
<script src="/ext/js/ui.js"></script>
<script src="/ext/js/types.js"></script>
</head>
<body onload="mode='all'; init();">
<div class="wrapper container-fluid">
<div class="header row between-sm start-sm center-xs">
<div class="header-logo start-sm center-xs col-xs-12 col-sm-5"></div>
<div class="header-contact col-sm-5 middle-xs end-xs">
<h4>
<div class="header-support">FEEDBACK & SUPPORT</div>
<div class="header-email">[email protected]</div>
</h4>
<div class="action-icon action-email icon-email"></div>
</div>
</div>
<div class="row center-xs middle-xs">
<div class="col-xs-12">
<h2>Barcode Types</h2>
<br />
The following barcode types are supported by the server.
<br />
<br />
View our <a href="/api.html" class="text-link">User Manual</a> for additional information.
<br />
<br />
Click a barcode format to learn more.
</div>
</div>
<div id="barcode-types">
<div class="row center-xs middle-xs barcode-template" id="barcode-template">
<div class="col-xs-6 center-sm start-xs barcode-type-info">
<span class="type-name">-</span>
<br />
<br />
Cost: <span class="type-cost-basic">!</span>-<span class="type-cost-custom">!</span>
<br />
Target: <span class="type-target">-</span>
<br />
<br />
<a class="text-link type-more">More Details</a>
</div>
<div class="col-xs-6 barcode-type-example">
<a class="type-example-link">
<img class="type-example" src="" />
</a>
</div>
</div>
</div>
</div>
</body>
</html>