-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (40 loc) · 1.45 KB
/
index.html
File metadata and controls
52 lines (40 loc) · 1.45 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
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title>QR Code Generator</title>
</head>
<body>
<div class="mai-box">
<!-- -->
<header class="qr-header">
<h1>QR Code Generator</h1>
<!-- -->
<input type="text" name="url-text" id="qr-url-text" placeholder="Type URL or Text">
<!-- -->
<div class="select-box">
<label for="sizes">Select sizes</label>
<select name="" id="sizes">
<option value="100">100x100</option>
<option value="200">200x200</option>
<option value="300">300x300</option>
<option value="400">400x400</option>
<label for="dark-color">Dark Color</label>
<input type="color" id="dark-color" value="#FC4258">
</select>
</div>
</header>
<!-- -->
<div class="qr-body"></div>
<!-- -->
<footer class="qr-footer">
<a href="" id="generate-btn">Generate</a>
<a href="" id="downlode-btn" download="QR code.png">Downlode</a>
</footer>
</div>
<script src="index.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js"></script>
</body>
</html>