-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqrcode.html
More file actions
37 lines (36 loc) · 1.35 KB
/
Copy pathqrcode.html
File metadata and controls
37 lines (36 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QRCODE-GENERATOR</title>
<link rel="stylesheet" href="../css/qrcode.css">
</head>
<body>
<div class="container">
<h1>Enter text or URL to generate QR code</h1>
<input type="text" placeholder="Enter text / URL" id="text">
<button onclick="generateQR()">Generate QR Code</button>
<div class="qr-result" id="qr-result" aria-live="polite">
<p class="qr-label">Generated QR Code</p>
<div id="qrcode"></div>
</div>
</div>
<div class="navbar">
<button onclick="document.getElementById('menu').hidden ^= 1">☰</button>
<ul id="menu" hidden>
<li><a href="../index.html">Login</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div class="home">
<button type="button" onclick="window.location.href='home.html'">Go to Home</button>
</div>
<footer class="about-footer">
<p>Created with <span class="heart">♥</span> by Midhun Manesh</p>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js"></script>
<script src="../js/qrcode.js"></script>
</body>
</html>