-
Notifications
You must be signed in to change notification settings - Fork 236
/
index.html
28 lines (24 loc) · 855 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
<!doctype html>
<html>
<head>
<title>ascii camera</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="css/main.css"/>
<link href="/favicon.png" rel="icon" type="image/png" />
<meta name="mobile-web-app-capable" content="yes">
</head>
<body>
<h1 id="info">Please allow this page to access your camera.</h1>
<div id="notSupported">
<h1>Your browser does not support the Camera API.</h1>
<img src="images/screenshot.png" align="center" />
</div>
<pre id="ascii"></pre>
<button id="button">start</button>
<a href="https://github.com/idevelop/ascii-camera" id="fork" target="_blank">View on GitHub</a>
<a href="http://idevelop.github.com/" id="idevelop" target="_blank">Made by idevelop</a>
<script src="script/camera.js"></script>
<script src="script/ascii.js"></script>
<script src="script/app.js"></script>
</body>
</html>