-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (25 loc) · 857 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title> QR Code Generator | Falcon98 </title>
<link rel="stylesheet" href="assets/style.css">
<meta name="viewport" content="'width=device-width initial-scale=1.0">
</head>
<body>
<div class="wrapper">
<header>
<hi>QR Code Generator</hi>
<p>Paste a url or entire text to create a QR code</p>
</header>
<div class="form">
<input type="text" placeholder="Enter text or url">
<button>Generate QR Code</button>
</div>
<div class="qr-code">
<img src="" alt="qr-code">
</div>
</div>
<script src="assets/script.js"></script>
</body>
</html>