-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideo.html
More file actions
36 lines (33 loc) · 1.19 KB
/
video.html
File metadata and controls
36 lines (33 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Embedded Video Page</title>
<link rel="stylesheet" href="assets/style_combined.css">
</head>
<body>
<header class="dark-gray-header">
<div class="header-center-video">
<h1>Earth's Last Stand: Evil Unleashed! </h1>
<h2>
<P>As Loki's dark shadow engulfs our world, Director Nick Fury searches for Earth's mightiest heroes.
The Avengers must unite for an epic showdown to defy tyranny and secure humanity's freedom!
</P>
</h2>
</div>
</header>
<main>
<div class="video-container">
<div id="player"></div>
</div>
</main>
<footer class="footer-center-video">
<h3>S.H.I.E.L.D HEADQUARTERS</h3>
<p>© 219 West 47th Street, New York City, New York.</p>
</footer>
<!-- Load the script_combined.js file first, then the YouTube API, and finally your video.js file -->
<script src="assets/script_combined.js"></script>
<script src="https://www.youtube.com/iframe_api"></script>
</body>
</html>