-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (26 loc) · 768 Bytes
/
index.html
File metadata and controls
26 lines (26 loc) · 768 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/style.css" />
<title>Face Detection WebApp using JavaScript</title>
<script defer src="./js/face-api.min.js"></script>
<script defer src="./js/script.js"></script>
</head>
<body>
<nav></nav>
<main>
<div class="container">
<h3 class="main-heading">#FaceDetectingWebApp</h3>
</div>
<div class="main-video-div">
<video id="video" autoplay muted></video>
</div>
</main>
<footer>
<p>Made with ❤️ by <a href="https://github.com/akashprasher">Akash Prasher</a></p>
</footer>
</body>
</html>