-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
35 lines (35 loc) · 1.51 KB
/
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
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Celebraphone</title>
<link rel="shortcut icon" href="/static/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="/static/style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-101436618-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-101436618-2');
</script>
</head>
<body>
<h1 id="title">Talk with a Celebrity</h1>
<div id="loading">
<p>Downloading data now, this is a large download and can take some time</p>
</div>
<video id="video" autoplay hidden></video>
<canvas id="output" height="200" width="300"></canvas>
<footer>
<p>Made by <a href="https://mattmatters.io">Matt Lewis</a></p>
<a href="https://github.com/mattmatters/celebraphone"><i class="fa fa-github" aria-hidden="true"></i></a>
</footer>
<canvas hidden id="video-out"></canvas>
<canvas hidden id="face-canvas"></canvas>
</body>
<footer>
<script type="text/javascript" src="/js/main.js"></script>
</footer>
</html>