-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (49 loc) · 1.48 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
<!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" />
<title>QR Code</title>
<link rel="stylesheet" href="./css/style.css" />
<script src="./js/qrcode.js" defer></script>
<script src="./js/script.js" defer></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JFYR74TG3B"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JFYR74TG3B');
</script>
</head>
<body>
<div class="main" id="main">
<img
srcset="https://img.icons8.com/ios/344/qr-code--v1.png 2x"
alt="icon"
loading="lazy"
style="
width: 172px;
height: 172px;
filter: invert(0%) sepia(4%) saturate(7500%) hue-rotate(252deg)
brightness(90%) contrast(104%);
"
/>
<input
type="text"
class="dataBox"
name="data"
placeholder="Paste your content"
id="dataBox"
value=""
autocomplete="false"
/>
<button class="btn" id="generateBtn">Generate</button>
<div class="qrdiv hide" id="qrdiv">
<div class="qrcode" id="qrcode"></div>
<button class="downloadBtn" id="downloadBtn">Download</button>
</div>
</div>
</body>
</html>