This repository was archived by the owner on Jan 27, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (56 loc) · 2.69 KB
/
Copy pathindex.html
File metadata and controls
60 lines (56 loc) · 2.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Zarco QR Code Generator</title>
<meta name="description" content="Instantly create custom QR codes for your business, event, or personal use with Zarco QR Code Generator.">
<meta name="keywords" content="QR code generator, online QR code, create QR, custom QR, free QR code, Zarco, ZarCodeX">
<meta name="author" content="ZarCodeX">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://zarcodex.github.io/Zarco-QR-Code-Generator/">
<meta property="og:title" content="Zarco QR Code Generator">
<meta property="og:description" content="Instantly create custom QR codes for your business, event, or personal use with Zarco QR Code Generator.">
<meta property="og:image" content="https://zarcodex.github.io/Zarco-QR-Code-Generator/images/preview.png">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://zarcodex.github.io/Zarco-QR-Code-Generator/">
<meta property="twitter:title" content="Zarco QR Code Generator">
<meta property="twitter:description" content="Instantly create custom QR codes for your business, event, or personal use with Zarco QR Code Generator.">
<meta property="twitter:image" content="https://zarcodex.github.io/Zarco-QR-Code-Generator/images/preview.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/main.css" />
<link rel="icon" type="image/x-icon" href="images/favicon.png">
<script src="library/ajax_qrcode.js"></script>
</head>
<body>
<header class="header">
<nav class="navbar">
<div class="logo">ZARCO</div>
</nav>
</header>
<div class="container">
<section class="hero">
<div class="hero-text">
<h1>QR Code Generator</h1>
<p>Instantly create custom QR codes for your business, event, or personal use.</p>
<input type="text" placeholder="Enter URL or text" id="inputField" />
<div class="button-group">
<button onclick="generateQr()">Generate</button>
<button onclick="downloadQr()" class="download-btn">Download</button>
</div>
</div>
<div class="hero-image">
<div id="qrcode"></div>
</div>
</section>
</div>
<footer class="footer">
© 2025 ZarCodeX • All Rights Reserved
</footer>
<script src="js/script.js"></script>
</body>
</html>