-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (26 loc) · 807 Bytes
/
index.html
File metadata and controls
31 lines (26 loc) · 807 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>QR Code Reader</title>
<!-- Shared styles -->
<link rel="stylesheet" type="text/css" href="style/headers.css">
<link rel="stylesheet" type="text/css" href="style/buttons.css">
<!-- Specific code -->
<link rel="stylesheet" type="text/css" href="style/reader.css">
<!-- Specific code -->
<script defer type="application/javascript" src="js/llqrcode.js"></script>
<script defer type="application/javascript" src="js/reader.js"></script>
</head>
<body>
<!-- Main view -->
<section class="view" role="region">
<header>
<h1>FOS Reader</h1>
</header>
<section>
<button id="scan-button">Start Scanning!</button>
</section>
</section>
</body>
</html>