-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (38 loc) · 1.37 KB
/
index.html
File metadata and controls
39 lines (38 loc) · 1.37 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
37
38
39
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Custom Vedio Player</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container"class="container">
<video id="myved" src="Ariana Grande - Into You.mp4" poster="posterimage.jpg">
</video>
<div id="controll" class="control flex-center">
<div id="butt" class="pause flex-center">
<img src="icons8-circled-play-96.png" alt="Pause-Play">
</div>
<div class="progress flex-center ">
<input id="progress-input" type="range" name="" value="10%" step="0.1"min="0" max="100"/>
</div>
<div class="wrap flex-center ">
<div id="time" class="time flex-center">
<p>0:00/0:00</p>
</div>
<div id="mute" class="volume flex-center">
<img src="icons8-audio-24 (1).png" alt="Mute">
</div>
<div class="volume-up-dn flex-center">
<input id="vol-input" type="range" name="" value="" min="0" max="1" step="0.1"/>
</div>
<div id="fullscreen"class="fullscreen flex-center">
<img src="icons8-full-screen-filled-50.png" alt="Fullscreen">
</div>
</div>
</div>
</div>
</body>
<script src="script.js" charset="utf-8"></script>
</html>