-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (31 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QR Code Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>QR Code Generator</h1>
<form id="qr-form">
<label for="url">Target URL:</label>
<input type="text" id="url" name="url" required><br><br>
<label for="logo">Logo Image:</label>
<input type="file" id="logo" name="logo" accept="image/*" required><br><br>
<label for="format">Choose format:</label>
<select id="format" name="format" required>
<option value="png">PNG</option>
<option value="svg">SVG</option>
</select><br><br>
</form>
<button id="generate-btn">Generate QR Code</button>
<div id="qr-preview"></div>
<a id="download-link" style="display:none;">Download</a>
<!-- Including the correct QRCode library -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/0.4.1/html2canvas.min.js"></script>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/qrcodejs/qrcode.min.js"></script>
</body>
</html>