mmsubandmovies commited on
Commit
1ac781b
1 Parent(s): 2050910

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +48 -19
index.html CHANGED
@@ -1,19 +1,48 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>