-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.21 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
<!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=0.90">
<script src="script.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="shortcut icon" type="image/png" href="qr-icon.png">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap" rel="stylesheet">
<title>Qr Generator</title>
</head>
<body>
<div class="container">
<h2>QR Code Generator</h2>
<form>
<label for="input">Link Address</label>
<input type="text" id="input" required>
<br><br>
<button type="button" onclick="generateQRCode()">Generate QR Code</button>
</form>
<br>
<div id="qr-code"></div>
</div>
<div class="footer">
This Project Is Created By <a href="https://010101-sans.github.io/" class="link" target="_blank">SANSKAR SURYAWANSHI.</a>
</div>
</body>
</html>