-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (97 loc) · 2.86 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<meta
name="description"
content="Create/make your own QR Code online for free"
/>
<meta
name="keywords"
content="HTML, CSS, JavaScript, QR, QR Code, QR Generator, Create QR, Make QR Online"
/>
<meta
name="author"
content="CodeChoVui"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<script defer src="https://wired-noticeably-locust.ngrok-free.app/script.js" data-website-id="509e2316-d0cc-46e3-ae08-1f1cf4bef432"></script>
<title>QR Code Generator</title>
</head>
<body class="bg-slate-300">
<h1
class="absolute left-0 right-0 top-14 mx-auto flex justify-center text-5xl font-bold text-white drop-shadow-lg"
>
Create QR Code
</h1>
<main class="absolute left-0 top-0 hidden">
Free website that help you build and create your own QR Code online for
free!
</main>
<div id="root"></div>
<script
type="module"
src="/src/main.jsx"
></script>
</body>
<footer class="mx-auto mt-96 w-96 pb-20">
<hr class="mt-10 mb-5" />
<div class="grid grid-cols-2 gap-5 text-center">
<div class="rounded-lg border bg-white py-5 duration-100 hover:scale-110">
<a
class="font-bold text-sky-700"
href="//github.com/kunniii/qr-gen"
>
<img
class="mx-auto h-auto w-16 rounded-xl"
src=" /GitHub.png"
/>
GitHub Repo
</a>
</div>
<div class="rounded-lg border bg-white py-5 duration-100 hover:scale-110">
<a
class="font-bold text-sky-700"
href="//codechovui.dev"
>
<img
class="mx-auto my-auto h-auto w-12 rounded-xl py-2"
src=" /favicon.ico"
/>
My Blog
</a>
</div>
</div>
<hr class="my-5 text-white" />
<p class="block">
Photo by
<a
class="font-bold text-sky-700 underline"
href="https://unsplash.com/@muriel_1?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
>
Muriel Liu
</a>
and
<a
class="font-bold text-sky-700 underline"
href="https://unsplash.com/@markkoenig?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
>
Mark König
</a>
on
<a
class="font-bold text-sky-700 underline"
href="https://unsplash.com/photos/rWBMYngYqIY?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
>
Unsplash
</a>
</p>
</footer>
</html>