-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (29 loc) · 1.02 KB
/
Copy pathindex.html
File metadata and controls
37 lines (29 loc) · 1.02 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Face Detection</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="container">
<div id="not-supported-area" class="row"></div>
<div class="row">
<div id="imageContainer" class="images">
<img id="targetImg" class="image" alt="." />
</div>
</div>
<div class="row input-row">
<div class="upload-wapper">
<button class="btn" id="fileUploadBtn">Give a Try</button>
<input class="hidden" type="file" accept="image/*" id="imageInput">
</div>
</div>
<div class="message"></div>
</div>
<script src="./js/face-detection.js"></script>
<script src="./js/index.js"></script>
</body>
</html>