-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
30 lines (24 loc) · 880 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
29
30
<!DOCTYPE html>
<html>
<head lang='en'>
<meta charset='UTF-8'>
<title>Baroquegrammer</title>
<link rel='stylesheet' type='text/css' href='assets/styles/index.css' />
</head>
<body>
<form>
<input type='file' id='image-file-field' name='foo'>
<img id='image-preview' class='image-preview'></img>
</form>
<div id='image-container' class='image-container'>
<div class='image-target' id='image-target'>
<img id='image-face' class='image-face'>
</div>
<img src='assets/images/main.png' class='main-image'>
</div>
<!-- Include some chill JavaScript dependencies here y'all -->
<script src='node_modules/jquery/dist/jquery.min.js'></script>
<script src='node_modules/jquery.facedetection/dist/jquery.facedetection.min.js'></script>
<script src='assets/js/index.js'></script>
</body>
</html>