-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.html
48 lines (41 loc) · 1.5 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
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>IPTV Player</title>
<!-- Bootstrap CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<!-- Clappr script -->
<script src="https://cdn.jsdelivr.net/npm/clappr@latest/dist/clappr.min.js"></script>
<!-- Custom CSS -->
<link href="style.css" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" href="live.gif" type="image/gif">
</head>
<body>
<div id="loading-screen">
<img src="loading.gif" alt="Loading...">
</div>
<div class="container-fluid" id="content">
<div class="row">
<div class="col-md-4 list-container">
<ul id="playlist" class="list-group">
<!-- Playlist items will be inserted here by JavaScript -->
</ul>
</div>
<div class="col-md-8">
<div id="heading"><span class="animated-heading"><img src="live.gif" alt="live logo" class="logo" width="4%"> IPTV</span><span>-concept by pratik</span></div>
<div id="player-container">
<div id="tv-screen">
<div id="player"></div>
</div>
</div>
</div>
</div>
</div>
<!-- Custom JavaScript -->
<script src="script.js"></script>
</body>
</html>