-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
47 lines (42 loc) · 2.31 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
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SEO Meta Tags -->
<meta name="description" content="This open-source project allows users to easily generate QR codes using a simple and responsive web interface.">
<meta name="keywords" content="QR Code Generator, open-source, QR code, responsive design">
<meta name="author" content="MD SAIFUL ISLAM">
<link rel="canonical" href="https://msilabs.github.io/qr-code-generator/">
<meta name="robots" content="index, follow">
<!-- Title -->
<title>QR Code Generator</title>
<!-- Open Graph / Facebook Meta Tags -->
<meta property="og:title" content="QR Code Generator"/>
<meta property="og:url" content="https://msilabs.github.io/qr-code-generator/"/>
<meta property="og:image" content="https://raw.githubusercontent.com/msilabs/qr-code-generator/refs/heads/main/screenshot.png"/>
<meta property="og:description" content="This open-source project allows users to easily generate QR codes using a simple and responsive web interface."/>
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="QR Code Generator">
<meta name="twitter:description" content="This open-source project allows users to easily generate QR codes using a simple and responsive web interface.">
<meta name="twitter:image" content="https://raw.githubusercontent.com/msilabs/qr-code-generator/refs/heads/main/screenshot.png">
<!-- Stylesheet -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h2>QR Code Generator</h2>
<input type="search" id="text-input" placeholder="Enter text or URL">
<button onclick="generateQRCode()">Generate QR Code</button>
<div id="loader" style="display: none;"></div> <!-- Loader -->
<div id="qr-container"></div>
<div id="button-container">
<button id="download-btn" onclick="downloadQRCode()" style="display: none;">Download</button>
<button id="copy-btn" onclick="copyQRCode()" style="display: none;">Copy</button>
</div>
</div>
<script src="qrcode.min.js"></script>
<script src="script.js"></script>
</body>
</html>