forked from chrisdonahue/ddc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (20 loc) · 767 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (20 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<title>Dance Dance Convolution</title>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
<link id="favicon" rel="icon" href="https://cdn.glitch.com/b0d48e64-a514-4d74-bcf7-8ebe00ad9ebb%2Ffavicon-32x32.png?v=1577121439315" type="image/x-icon">
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@1.3.1"></script>
<script src="filesaver.min.js"></script>
<script src="ddc.js"></script>
<script src="script.js"></script>
</head>
<body>
<form>
<input id="file-input" type="file" multiple />
</form>
</body>
</html>