-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (33 loc) · 1.41 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
<!DOCTYPE html>
<html lang="fa">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>پلیر موزیک امیر تتلو</title>
<link href="https://cdn.jsdelivr.net/gh/rastikerdar/vazir-font@latest/dist/font-face.css" rel="stylesheet" type="text/css" />
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container mt-5">
<h1 class="text-center">پلیر موزیک امیر تتلو</h1>
<div class="card">
<div class="card-body">
<h5 id="track-title" class="card-title">انتخاب آهنگ کنید</h5>
<input type="text" id="search" class="form-control" placeholder="جستجوی آهنگ...">
<audio id="audio" controls>
<source id="audio-source" src="" type="audio/mpeg">
مرورگر شما از تگ audio پشتیبانی نمیکند.
</audio>
<div class="mt-3">
<ul id="track-list" class="list-group">
<!-- لیست آهنگها در اینجا بارگذاری میشود -->
</ul>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="script.js"></script>
</body>
</html>