-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (28 loc) · 996 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
31
<!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">
<title>AAI Captions Demo</title>
<link rel="shortcut icon" type="image/png" href="./assets/images/aai-favicon.png">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<header>
<div id="header-logo">
<img src="./assets/images/header-img.png" alt="AssemblyAI Logo" width="200" height="50"/>
</div>
<div id="header-title">
<h1 id="demo-title">Captions with AssemblyAI</h1>
<h2 id="demo-subtitle">See how to add captions to your videos using VTT files!</h2>
</div>
</header>
<div id="video">
<video width="854" height="480" controls>
<source src="./assets/video/video.mp4" type="video/mp4">
</video>
</div>
<script type="module" src="./js/index.js" ></script>
</body>
</html>