This repository was archived by the owner on Apr 4, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 1.48 KB
/
Copy pathindex.html
File metadata and controls
44 lines (44 loc) · 1.48 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
<!--
Developed By Santosh Bhandari
Instagram: santosh.vandari
-->
<!DOCTYPE html>
<html lang="en">
<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>QR Code Generator</title>
<link rel="stylesheet" href="css/style.css">
<script src="js/qrcode.js"></script>
<script src="js/FileSaver.js"></script>
<script defer src="js/script.js"></script>
</head>
<body>
<div class="wrapper">
<div class="input">
<h3>Generate QR Code</h3>
<p class="inputerror">* Cannot be Empty</p>
<p class="generror">* Character Should be Less than 1000</p>
<form method="#">
<textarea id="text" cols="30" rows="20" placeholder="Enter the Text to Generate QR Code"></textarea>
<div>
<button type="reset" id="clear">Clear</button>
<li id="submit">Submit</li>
</div>
</form>
</div>
<div class="output">
<h2>QR Code</h2>
<div class="img" id="img" download></div>
<div class="btn">
<button id="regenerate">Regenerate</button>
<button id="download"><a href="#">Download</a></button>
</div>
</div>
<div class="error">
<p>Please Connect to the Internet</p>
</div>
</div>
</body>
</html>