Spaces:
Running
Running
mmsubandmovies
commited on
Commit
•
1ac781b
1
Parent(s):
2050910
Update index.html
Browse files- index.html +48 -19
index.html
CHANGED
@@ -1,19 +1,48 @@
|
|
1 |
-
<!
|
2 |
-
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="utf-8">
|
5 |
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
7 |
+
<title>IPTV Player</title>
|
8 |
+
|
9 |
+
<!-- Bootstrap CSS -->
|
10 |
+
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
|
11 |
+
|
12 |
+
<!-- Clappr script -->
|
13 |
+
<script src="https://cdn.jsdelivr.net/npm/clappr@latest/dist/clappr.min.js"></script>
|
14 |
+
|
15 |
+
<!-- Custom CSS -->
|
16 |
+
<link href="style.css" rel="stylesheet">
|
17 |
+
|
18 |
+
<!-- Favicon -->
|
19 |
+
<link rel="icon" href="live.gif" type="image/gif">
|
20 |
+
|
21 |
+
</head>
|
22 |
+
<body>
|
23 |
+
<div id="loading-screen">
|
24 |
+
<img src="loading.gif" alt="Loading...">
|
25 |
+
</div>
|
26 |
+
<div class="container-fluid" id="content">
|
27 |
+
<div class="row">
|
28 |
+
<div class="col-md-4 list-container">
|
29 |
+
<ul id="playlist" class="list-group">
|
30 |
+
<!-- Playlist items will be inserted here by JavaScript -->
|
31 |
+
</ul>
|
32 |
+
</div>
|
33 |
+
<div class="col-md-8">
|
34 |
+
<div id="heading"><span class="animated-heading"><img src="live.gif" alt="live logo" class="logo" width="4%"> FanCode</span><span>-Created by Urang</span></div>
|
35 |
+
<div id="player-container">
|
36 |
+
<div id="tv-screen">
|
37 |
+
<div id="player"></div>
|
38 |
+
</div>
|
39 |
+
</div>
|
40 |
+
</div>
|
41 |
+
</div>
|
42 |
+
</div>
|
43 |
+
|
44 |
+
<!-- Custom JavaScript -->
|
45 |
+
<script src="script.js"></script>
|
46 |
+
|
47 |
+
</body>
|
48 |
+
</html>
|