-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
34 lines (31 loc) · 835 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Quick QRCode</title>
<link rel="stylesheet" href="css/custom.css">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.qrcode.min.js"></script>
<script type="text/javascript" src="js/custom.js"></script>
</head>
<body>
<div id="wrapper">
<div id="header">
<h1>Quick QRCode</h1>
</div>
<div class="main">
<div id="left">
<h2>Put your text here:</h2>
<textarea id="qr-text" wrap="logical"></textarea>
</div>
<div id="result">
<h2>The QR Code:</h2>
<div id="output"></div>
</div>
</div>
<div id="footer">
<a href="https://github.com/chenzhiwei/chrome-quick-qrcode">https://github.com/chenzhiwei/chrome-quick-qrcode</a>
</div>
</div>
</body>
</html>