-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlarge.html
35 lines (34 loc) · 1.45 KB
/
large.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QR Code Generator</title>
<link rel="stylesheet" href="./src/css/large.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
</head>
<body>
<div class="topbar">
<a href="https://github.com/danek309044/simple-qr-generator" id="src" target="_blank"><i class="fa-brands fa-github"></i> Source code</a>
</div>
<h1>Advanced QR Code Generator</h1>
<div class="container">
<div class="options">
<h2 style="text-align: center;">Options</h2>
Width x height<input placeholder="250" type="number" id="widthHeight" value="250">px<br>
Main color<input type="color" value="#000000" id="main"><br>
Background color<input type="color" value="#ffffff" id="background"><br>
<p>QR code value</p>
<textarea placeholder="Enter text here, that you want to make a qr code of" type="text" id="input" value=""></textarea><br>
</div>
<div id="qr">
<h2>Preview</h2>
<div id="qrBox">
<img src="" id="qrImg">
</div>
<p class="download"><a href="" id="download" download=""><i class="fa-solid fa-download"></i> Download</a></p>
</div>
</div>
<script src="./src/js/large.js"></script>
</body>
</html>