-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 1.2 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
<!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">
<title>Gerador de QR Code</title>
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<script src="js/scripts.js" defer></script>
</head>
<body>
<div class="container">
<header id="qr-header">
<h1>Gerador de QR Code <i class="bi bi-qr-code"></i></h1>
<p>Insira seu texto:</p>
</header>
<main>
<div id="qr-form">
<input type="text" placeholder="Digite um texto ou URL">
<button type="submit">Gerar QR Code</button>
</div>
<div id="qr-code">
<img src="img/meuqrcode.png" alt="qrcode">
</div>
</main>
</div>
<footer>
</footer>
</body>
</html>