-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 870 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gerador de QR Code</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js"></script>
</head>
<body>
<div class="container">
<h1>Gerador de QR Code</h1>
<label for="url-input"></label><input type="text" id="url-input" placeholder="Insira o link aqui">
<button onclick="generateQRCode()">Gerar QR Code</button>
<div id="qrcode-container" style="display: none;">
<div id="qrcode"></div>
<button id="download-btn" onclick="downloadQRCode()">Baixar QR Code</button>
</div>
</div>
<script src="script.js"></script>
<script src="hotjar.js"></script>
</body>
</html>