Skip to content
Snippets Groups Projects
qr-scanner.html 772 B
Newer Older
Rhys Nute's avatar
Rhys Nute committed
<!--setup html page for QR codes - R Nute-->
Rhys Nute's avatar
Rhys Nute committed
<!--Modified from (https://www.geeksforgeeks.org/create-a-qr-code-scanner-or-reader-in-html-css-javascript/)-->

Rhys Nute's avatar
Rhys Nute committed
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewpoint" content="width-device-width, initial-scale=1.0">
Rhys Nute's avatar
Rhys Nute committed
    <link rel="stylesheet" href="css/templatingstyle.css">
Rhys Nute's avatar
Rhys Nute committed
    <link rel="stylesheet" href="css/qrstyle.css">
Rhys Nute's avatar
Rhys Nute committed
    <script src="https://unpkg.com/html5-qrcode"></script>
Rhys Nute's avatar
Rhys Nute committed
    <script type="module" src="scripts/qr-script.js"></script>
Rhys Nute's avatar
Rhys Nute committed
    <title>QR Code</title>
</head>

<body>
    <div class="container">
        <h1>Scan location QR code</h1>
        <div class="section">
            <div id="qr-code-reader">
            </div>
        </div>
    </div>
</body>
</html>