-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (58 loc) · 1.75 KB
/
index.html
File metadata and controls
62 lines (58 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Barcode and QR Code Generator</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
</head>
<body>
<header>
<h1>simple barcode/qr code generator</h1>
</header>
<div class="container">
<p><b>Enter your data or URL</b></p>
<input
type="text"
placeholder="paste or input data or link"
id="barcodeText"
/>
<div class="imgBox">
<img src="" id="barcodeImg" />
<img src="" id="qrCodeImg" />
</div>
<div class="button-group">
<button onclick="generateBarcode()">Generate Barcode</button>
<button onclick="generateQRCode()">Generate QR Code</button>
<button
id="downloadBarcodeBtn"
onclick="downloadBarcode()"
style="display: none"
>
Download Barcode
</button>
<button
id="downloadQRCodeBtn"
onclick="downloadQRCode()"
style="display: none"
>
Download QR Code
</button>
<button onclick="resetFields()">Reset</button>
</div>
</div>
<footer>
<a href="https://linkedin.com/in/violetnguyen0120/"
>Made with <i class="fas fa-heart"></i> by Violet Nguyen</a
>
<a href="https://github.com/itsvee0120">
<img src="res/image/pixel_girl.png" alt="pixel art of a girl"
/></a>
</footer>
<script src="script.js"></script>
</body>
</html>