-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (28 loc) · 809 Bytes
/
index.html
File metadata and controls
45 lines (28 loc) · 809 Bytes
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
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QR Generator</title>
<link rel="stylesheet" href="beauty.css">
</head>
<body>
<script src="https://kit.fontawesome.com/f8de7fdc35.js" crossorigin="anonymous"></script>
<div class="white-box">
<h1>
<i class="fa-solid fa-qrcode"></i>
<font face = Verdana>
QR Code Generator</h1>
</font>
</h1>
<div class="container">
<input type="text" id="box" placeholder="Enter Your Text">
<button id="btn">Generate</button>
<p align="center"
<div id="qrcode" class="qrcode"></div>
</p>
</div>
<script src="script.js"></script>
<script src="https://cdn.rawgit.com/davidshimjs/qrcodejs/gh-pages/qrcode.min.js"></script>
</body>
</html>