-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (32 loc) · 1.09 KB
/
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
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mini YouTube</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="video-player">
<video id="main-video" controls>
<source src="sample.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="controls">
<button id="play-pause">Play</button>
<input type="range" id="volume-slider" min="0" max="1" step="0.1" value="1">
<span id="volume">Volume: 100%</span>
</div>
</div>
<div class="video-list">
<h2>Video List</h2>
<ul id="videos">
<li data-video="sample.mp4">Sample Video</li>
<li data-video="another-video.mp4">Another Video</li>
</ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>