-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 1.19 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
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>QR Code Generator</title>
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
rel="stylesheet"
/>
<!-- qrcode CDN -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/qrcodejs/1.0.0/qrcode.min.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="wrapper">
<input type="text" id="userInput" placeholder="Enter some text or URL" />
<div class="options">
<select class="sizeOptions">
<option value="100" selected>100 x 100</option>
<option value="200">200 x 200</option>
<option value="300">300 x 300</option>
</select>
<input type="color" id="BGColor" class="color-inp" />
<input type="color" id="FGColor" class="color-inp" />
</div>
<div class="box">
<button id="submit" disabled>Generate</button>
<a href="#" id="download">Download</a>
</div>
<div class="container"></div>
</div>
<script src="script.js"></script>
</body>
</html>