-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 758 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (25 loc) · 758 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gerador de QrCode</title>
</head>
<link rel="stylesheet" href="./css/styles.css">
<script src="./js/scripts.js" defer></script>
<body>
<div class="container">
<header id="qr-header">
<h1>Gerador de Qr Code</h1>
<p>insira uma url ou texto para criar um Qr code!</p>
</header>
<div id="qr-form">
<input type="text" placeholder="Digite a URL ou Texto :">
<button>Gerar QR Code</button>
<div id="qr-code">
<img src="./img/qr.PNG" alt="Qr Code">
</div>
</div>
</div>
</body>
</html>