-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (40 loc) · 2.29 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
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- HTML Meta Tags -->
<title>QR Codes Generator</title>
<meta name="description" content="A simple QR Codes generator.">
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="QR Code Generator">
<meta itemprop="description" content="A simple QR Code generator.">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://qr-codes-generator.vercel.app/">
<meta property="og:type" content="website">
<meta property="og:title" content="QR Code Generator">
<meta property="og:description" content="A simple QR Code generator.">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="QR Code Generator">
<meta name="twitter:description" content="A simple QR Code generator.">
<!-- Scripts -->
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="p-8 max-w-md m-auto bg-zinc-900 text-white text-center">
<main>
<h1 class="text-3xl font-bold mb-2">QR Codes Generator 🚀</h1>
<p class="mb-4">Enter a URL or some text to generate a QR code.</p>
<form id="form" onsubmit="generateQR()">
<input type="text" id="text" class="block py-2.5 px-0 w-full text-sm bg-transparent border-0 border-b-2 appearance-none border-gray-600 focus:outline-none focus:ring-0 focus:border-blue-600 mb-6" spellcheck="false" maxlength="2048" placeholder="Text / URL" required>
<button type="submit" id="btn" class="bg-blue-600 hover:bg-blue-700 focus:ring-4 focus:outline-none focus:ring-blue-300 font-medium rounded-lg text-sm w-full sm:w-auto px-5 py-2.5">Generate</button>
</form>
<img id="qr-code" src="" class="border-8 border-white rounded-md mt-8 mx-auto hidden">
</main>
<footer class="mt-8">
<p>© 2023 <span class="font-semibold">AnukarOP</span> - All Rights Reserved.</p>
</footer>
</body>
<script src="/script.js"></script>
</html>