-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (86 loc) · 5.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Primary Meta Tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QR Scanner | Safar</title>
<meta name="title" content="QR Scanner | Safar">
<meta name="description" content="A QR Code Scanner made using htm5qrcode. Take a Look at it's QR Generator for having multiple values in a QR. This is only for live testing purpose.">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://qr-scan-safar.netlify.app">
<meta property="og:title" content="QR Generator | Safar">
<meta property="og:description" content="A QR Code Scanner made using htm5qrcode. Take a Look at it's QR Generator for having multiple values in a QR. This is only for live testing purpose.">
<meta property="og:image" content="https://raw.githubusercontent.com/deepakpadhi986/qr-scan-safar/main/content/meta.png">
<meta property="og:image:width" content="1300"/>
<meta property="og:image:height" content="630"/>
<meta property="og:image:type" content="image/png"/>
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://qr-scan-safar.netlify.app">
<meta property="twitter:title" content="QR Generator | Safar">
<meta property="twitter:description" content="A Custom QR generator for my upcoming project. A multiple value qr generator. This is only for live testing purpose.">
<meta property="og:image" content="https://raw.githubusercontent.com/deepakpadhi986/qr-scan-safar/main/content/meta.png">
<meta property="og:image:width" content="1300"/>
<meta property="og:image:height" content="630"/>
<meta property="og:image:type" content="image/png"/>
<!-- favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="content/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="content/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="content/favicon/favicon-16x16.png">
<link rel="manifest" href="content/favicon/site.webmanifest">
<!-- bootswatch -->
<link rel="stylesheet" href="content/css/bootswatch.css">
<!-- custom css -->
<link rel="stylesheet" href="content/css/style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-MPSDWS46K1"></script>
<script src="content/script/gtag.js"></script>
<!-- Microsoft clarity -->
<script src="content/script/msc.js"></script>
</head>
<body>
<!-- title -->
<h3 class="text-danger">SAFAR QR SCANNER : )</h3>
<!-- info -->
<p class="text-info info">Also Try a linked project for this <a class="text-info" href="https://qr-gen-safar.netlify.app">QR Generator</a></p>
<!-- reader -->
<div id="qr-reader" class="col-md-5"></div>
<!-- errors -->
<div id="qr-reader-results" class="text-danger"></div>
<!-- scanned result -->
<div class="form-group scan">
<!-- label -->
<label for="dcode" class="from-label mt-4 text-success">Scanned Result</label>
<!-- result textarea -->
<div class="col-md-4">
<textarea id="dcode" class="form-control" rows="6" cols="40" readonly contenteditable="false" translate="yes"></textarea>
</div><br>
<!-- copy to clipboard -->
<input type="button" class="btn btn-outline-info" value="Copy to Clipboard" onclick="myFunction()">
</div>
<!--Used Tools-->
<div class="toast-header" id="terms">
<strong class="me-auto">Used Tools</strong>
<small>Test : )</small>
</div>
<div class="toast-body">
<ul>
<li>Also Try Multiple Values <a href="https://qr-gen-safar.netlify.app">QR Generator</a></li>
<li><a href="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js">JQuery</a></li>
<li><a href="https://github.com/mebjas/html5-qrcode">html5-qrcode</a></li>
<li><a href="https://bootswatch.com/lumen/">Bootswatch Lumen</a></li>
</ul>
</div>
<hr>
<!-- footer/copyright -->
<p class="text-secondary foot">© QR SCANNER SAFAR Built Using <a href="https://github.com/mebjas/html5-qrcode">html5-qrcode</a></p>
<!-- jquery cdn -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<!-- unpkg html5qrcode cdn -->
<script src="https://unpkg.com/html5-qrcode"></script>
<!-- custom script -->
<script src="content/script/script.js"></script>
</body>
</html>