-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 827 Bytes
/
index.html
File metadata and controls
26 lines (24 loc) · 827 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 class="heading">Say Hi👋!!!</h1>
<video class="webcamVideo" autoplay></video>
<canvas class="canvas"></canvas>
<div class="rickRoll">
<video class="playbackVideo" width="480" height="360" controls>
<source src="Rick roll.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/handtrackjs@latest/dist/handtrack.min.js"> </script>
<script src="app.js"></script>
</body>
</html>