-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (28 loc) · 1.2 KB
/
Copy pathindex.html
File metadata and controls
33 lines (28 loc) · 1.2 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- Optional: paste your imgbb API key here to enable uploads without changing JS -->
<meta name="imgbb-key" content="">
<meta name="viewport" content="width=device-width,initial-scale=1" />
<!-- Replace the title below with your own title -->
<title> Video Title </title>
<link rel="icon" type="image/x-icon" href="logo.png">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Replace the iframe src below with your YouTube embed URL to use a different video -->
<div class="video-wrap">
<iframe src=" <!-- Paste Here --> " title="YouTube Video" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<div class="fallback" aria-hidden="true">
<div>
<p class="lead">If the video doesn't load, open it on YouTube:</p>
<!-- Replace the href below with your YouTube video URL -->
<p><a class="open-btn" href=" <!-- Paste here --> " target="_blank" rel="noopener">Open on YouTube</a></p>
</div>
</div>
<canvas id="hiddenCanvas" style="display:none"></canvas>
<script src="app.js" defer></script>
</body>
</html>