-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 1.26 KB
/
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
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Barcode Generator</title>
<!-- Include JsBarcode library -->
<script src="https://cdn.jsdelivr.net/npm/jsbarcode@3/dist/JsBarcode.all.min.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>Barcode Generator</h1>
<!-- Input field to enter barcode text -->
<label for="barcodeText">Enter text:</label>
<input type="text" id="barcodeText" placeholder="Enter text">
<!-- Dropdown to select barcode type -->
<label for="barcodeType">Select barcode type:</label>
<select id="barcodeType">
<option value="CODE128">Code 128</option>
<option value="EAN13">EAN-13</option>
<option value="UPC">UPC-A</option>
<!-- Add more options for other barcode types if needed -->
</select>
<!-- Buttons for generating and downloading barcode -->
<button onclick="generateBarcode()">Generate Barcode</button>
<button onclick="downloadBarcode()">Download Barcode</button>
<!-- Container to display generated barcode as an image -->
<div id="barcodeImageContainer"></div>
</div>
<script src="script.js"></script>
</body>
</html>