-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideo_player.html
More file actions
34 lines (29 loc) · 825 Bytes
/
Copy pathvideo_player.html
File metadata and controls
34 lines (29 loc) · 825 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
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Current Video</title>
<link rel="stylesheet" href="styles/video_player_style.css"/>
<script src="https://apis.google.com/js/api.js"></script>
<script src="javascripts/YouTubeVideoPlayer.js" defer></script>
</head>
<body>
<header>
<h1>TidyTube</h1>
<h3>Search up the fun 🔍</h3>
</header>
<!-- Display the Main Video -->
<div id="current_video">
</div>
<!-- Show Related Videos -->
<h2>Related Videos</h2>
<div class="related_videos_result">
<section>
</section>
</div>
<footer>
<a class="button" href="index.html">Main Page</a>
<a class="button" href="history.html">Viewing History</a>
</footer>
</body>
</html>