-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (55 loc) · 2.38 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="default-src 'self' * data:;
script-src 'self' 'unsafe-inline' 'unsafe-eval' *;
style-src 'self' 'unsafe-inline' *;
img-src 'self' blob: data: *;
media-src 'self' blob: *;
worker-src 'self' blob:;">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="The programming language for the next generation." />
<meta name="keywords" content="elsa, ai, programming language" />
<meta name="author" content="Joel Jolly" />
<link rel="icon" href="Logo/Elsa.png">
<link rel="stylesheet" href="Styles/Styles.css">
<link rel="shortcut icon" href="Logo/Elsa.ico" />
<meta name="HandheldFriendly" content="true">
<meta name="distribution" content="global">
<meta name="rating" content="general">
<meta name="twitter:title" content="Elsa">
<meta name="twitter:description" content="The programming language for the next generation.">
<meta name="twitter:image" content="https://cdn.jsdelivr.net/gh/withinjoel/PackageManager@main/UNWRAP/Images/UnwrapGithub.png">
<meta name="twitter:site" content="@withinjoel">
<meta name="language" content="English">
<title>Elsa</title>
<link rel="manifest" href="manifest.json">
<meta property="og:title" content="Elsa" />
<meta property="og:description" content="The programming language for the next generation." />
<meta property="og:image" content="Logo/Elsa.png" />
<meta property="og:type" content="website" />
</head>
<body onclick="input.focus()">
<div id="log"></div>
<form spellcheck="false" autocomplete="off" action="javascript:runCmd(input.value,true,true)">
<div>
<div id="prompt"></div>
<input id="input" autofocus>
</div>
</form>
</body>
<!-- Models -->
<script src="Modules/Models/Tensorflow/tfjs.js"></script>
<script src="Modules/Models/Tensorflow/body-pix.js"></script>
<script src="Modules/Models/Tensorflow/deeplab.js"></script>
<script src="Modules/Models/Opencv/opencv.js"></script>
<script src="Modules/Models/Tone/Tone.min.js"></script>
<script src="Modules/Models/Faceapi/face-api.min.js"></script>
<!-- Scripts -->
<script src="Script/Variables.js"></script>
<script src="Modules/Modules.js"></script>
<script src="Modules/Commands.js"></script>
<script src="Script/Process.js"></script>
</html>