-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
33 lines (28 loc) · 717 Bytes
/
index.php
File metadata and controls
33 lines (28 loc) · 717 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Audio player</title>
</head>
<body>
<!-- tarjeta player -->
<section id="tarjeta-player">
<div class="wrapper">
<!-- -->
<div class="nombre">
<h3>Track: </h3>
<h2>... </h2>
</div>
<progress min="0" max="100" value="0"></progress>
<br>
<input type="range" id="volumen" min="0" max="1" value="1" step="0.01">
<br>
<button class="toggle-play" data-playing="false" role="switch" aria-checked="false">
<span>Play/Pause</span>
</button>
</div>
</section>
<!-- -->
<script src="index.js" type="text/javascript"></script>
</body>
</html>