-
Notifications
You must be signed in to change notification settings - Fork 0
/
Generator.html
27 lines (27 loc) · 903 Bytes
/
Generator.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 By Akhilesh</title>
<link rel="stylesheet" href="Generator.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div class="wrapper">
<header>
<h1>QR Code Generator</h1>
</header>
<div class="form">
<input type="text" spellcheck="false" placeholder="Enter text or url" />
<button>Generate QR Code</button>
</div>
<div class="qr-code">
<img src="" alt="qr-code" />
</div>
</div>
<footer style="position: fixed; left: 0; bottom: 0; width: 100%; text-align: center; background-color: #f8f9fa; padding: 10px;">
© 2023 Akhilesh. All rights reserved.
</footer>
<script src="Generator.js"></script>
</body>
</html>