-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (33 loc) · 1.13 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
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="fontawesome/css/font-awesome.min.css" />
<link rel="stylesheet" href="style.css" />
<title>Mini video/audio Player</title>
</head>
<body>
<div class="player">
<div class="togglebar">
<p class="showname"></p>
</div>
<div class="audio-style">
<div class="small"></div>
</div>
<input type="file" name="" id="fileInput" />
<video class="preview" src="" autoplay loop></video>
<div class="controls">
<div class="control-icons">
<label for="fileInput"><i class="fa fa-bars"></i></label>
<i class="fa fa-arrow-right backward"></i>
<i class="fa fa-play play-pause"></i>
<i class="fa fa-stop stop"></i>
<i class="fa fa-arrow-left forward"></i>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>