-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.html
More file actions
31 lines (31 loc) · 1.25 KB
/
menu.html
File metadata and controls
31 lines (31 loc) · 1.25 KB
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 lang="en">
<head>
<meta charset="utf-8">
<title>Menu</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
</head>
<body>
<header>
<h1>Show me something with words on it...</h1>
</header>
<section id="video-section">
<video id="video-id" height="225" width="300"></video>
<button id="button-id" disabled="true">Take Picture"</button>
</section>
<section id="snapshot-section">
<canvas id="canvas-id" height="225" width="300"></canvas>
</section>
<section id="results-section">
<div id="results-id"></div>
</section>
<script type="text/javascript" src="js/glfx.js"></script>
<script type="text/javascript" src="js/ocrad.js"></script>
<script type="text/javascript" src="js/secrets.js"></script>
<script type="text/javascript" src="js/goog.js"></script>
<script src="https://apis.google.com/js/client.js?onload=init"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>