-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (36 loc) · 1.12 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
<!-- index.html -->
<!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="styles.css">
</head>
<body>
<div class="container">
<h1>QR Code Generator</h1>
<form id="qrForm">
<div class="form-group">
<label for="url">URL:</label>
<input type="url" id="url" name="url" required>
</div>
<div class="form-group">
<label for="logo">Logo:</label>
<input type="file" id="logo" name="logo" accept="image/*" required>
<img id="logoPreview" src="" alt="Logo Preview" style="display: none;">
</div>
<button type="submit">Generate QR Code</button>
</form>
<div class="qr-preview">
<img id="qrCodeImage" src="" alt="QR Code Preview">
<div class="download-options">
<button id="downloadPNG">Download PNG</button>
<button id="downloadPDF">Download PDF</button>
<button id="downloadSVG">Download SVG</button>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>