-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (26 loc) · 920 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="style.css">
<title>Gerador de código QR</title>
</head>
<body>
<div class="container">
<div class="app-name">
<h2><i class="fa-solid fa-qrcode"></i>Qr Code Generator</h2>
</div>
<div class="url-box">
<p>Cole um URL ou insira texto para criar um código QR</p>
<input type="text" class="userInput" placeholder="Insira o texto ou URL">
</div>
<button class="generate-btn">Gerar código QR</button>
<div class="qr-box">
<img src="" alt="">
</div>
</div>
<script src="qrCode.js"></script>
</body>
</html>