11 lines
240 B
HTML
11 lines
240 B
HTML
<html>
|
|
<head>
|
|
<title>QR Code</title>
|
|
</head>
|
|
<body>
|
|
<div id="qrcode"></div>
|
|
<script type="text/javascript">
|
|
new QRCode(document.getElementById("qrcode"), "");
|
|
</script>
|
|
</body>
|
|
</html> |