-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
30 lines (28 loc) · 1009 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-br">
<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">
<link rel="stylesheet" href="./assets/css/style.css">
<script src="./assets/js/scripts.js" defer></script>
<title>QRcode</title>
</head>
<body>
<div class="box">
<h1>Create your QR Code</h1>
<textarea maxlength="256" rows="4" class="inputBox"></textarea>
<button onclick="generateQRCode()">Generate</button>
</div>
<div class="scan">
<div class="qrcode">
</div>
<!--<h3>QR CODE SCANNING.....</h3>-->
<div class="border"></div>
</div>
<div class="qr-code-container">
<img id="QRCodeImage">
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcode/1.4.4/qrcode.js" integrity="sha512-oxrVyBhqnzQ0BzuM0A/6dEIk0alz0p4SpDRaWvtuUoarIc8rnL5lVniHG5Dp21MRFojcQcmKHjaskNXhSaUPPw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</body>
</html>