-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (71 loc) · 4.16 KB
/
index.html
File metadata and controls
75 lines (71 loc) · 4.16 KB
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
<!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">
<meta name="description" content="Gerador de QR Code gratuito">
<title>QRCode Generator</title>
<link rel="shortcut icon" href="https://agenciatj.com.br/images/TJ.png" type="image/x-icon">
<!-- Bootstrap & CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
<script src="qrcode.min.js"></script>
</head>
<body>
<div class="container mt-5 rounded-2 shadow pt-5">
<h1 class="text-center poppins-light">QRcode free</h1>
<div id="alertDiv" class="mt-3"></div>
<div class="row justify-content-center mt-3">
<div class="col-8 col-md-6">
<input type="text" id="text" class="form-control poppins-extralight" placeholder="Digite uma URL">
</div>
</div>
<div class="row justify-content-center mt-3">
<div class="col-8 col-md-6 text-center">
<button id="gerarQR" onclick="generateQRCode()" class="btn btn-primary poppins-extralight">Gerar <i class="fa-solid fa-qrcode"></i></button>
</div>
</div>
<div class="canva_qr mt-5 mb-3 shadow-lg">
<a id="qrcode" alt="qrcode"></a>
</div>
<div class="row justify-content-center mt-3">
<div class="col-8 col-md-6 text-center">
<button id="download" onclick="downloadQRCode()" class="btn btn-success poppins-extralight text-center" style="display: none;">Download
<i class="fa-solid fa-download"></i>
</button>
</div>
<div class="text-center mt-3">
<button id="reset" onclick="location.reload()" class="btn btn-dark-subtitle poppins-extralight text-center" style="display: none;">Novo QRcode <i class="fa-solid fa-arrows-rotate"></i></button>
</div>
</div>
</div>
<!--- Botão WhatsApp--->
<div style="position: fixed; bottom: 20px; right: 10px;">
<a href="https://wa.me/558491844945?text=Olá!%20Vi%20seu%20site%20e%20estou%20interessado(a)%20em%20seus%20serviços!" target="_blank">
<img src="https://logodownload.org/wp-content/uploads/2015/04/whatsapp-logo-png-0.png" alt="WhatsApp" width="50" height="50">
</a>
</div>
<section class="mt-5">
<div class="outras_ferramentas text-center">
<p>
Converta imagens em outros formatos gratuitamente <i class="fa-solid fa-arrow-down animate__animated animate__bounce"></i>
</p>
<a class="btn btn-dark animate__animated animate__pulse" href="http://conversor.clickston.com.br" type="button" target="_blank" rel="noopener noreferrer"> Conversor de Imagem</a>
</div>
</section>
<!--- Footer --->
<footer class="footer mt-5">
<div class="copyright-desenvolvedor">
<p class="text-center m-2">
<a class="text-black-50" style="text-decoration: none; font-size:x-small" href="http://agenciatj.com.br" target="_blank" rel="noopener noreferrer">Desenvolvido por ©</a>
<img class="logo-desenvolvedor" src="https://agenciatj.com.br/images/TJ.png" alt="TJ" title="TJ Design & Serviços Web" width="15px" height="15px" style="border-radius: 50%;">
</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.4.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="canvas_qrcode.js"></script>
</body>
</html>