-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (79 loc) · 4.95 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!doctype html>
<html lang="en">
<head>
<!-- meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<title>Benin Web TV</title>
</head>
<body>
<header id="header">
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top border-bottom shadow-sm">
<a class="navbar-brand" href="#">
<img id="header-img" class="d-inline-block align-top" src="img/benin.png" width="50" height="30" alt="logo">
<span class="vert">Benin</span> <span class="jaune">Web</span> <span class="rouge">TV</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link link-a" href="#">Accueil <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link link-b" href="#">Guide TV</a>
</li>
<li class="nav-item">
<a class="nav-link link-c" href="#">Direct</a>
</li>
</ul>
</div>
</nav>
</header>
<div class="channel-list-container">
<div class="channel-list">
<button class="title list-group-item list-group-item-action">Benin TNT </button>
<button type="button" class="list-group-item close-btn"><i class="fas fa-times"></i></button>
<button type="button" class="list-group-item list-group-item-action" onclick="show('Channel1');"> <img src="img/ORTB-logo.jpg" alt="ORTB"></button>
<button type="button" class="list-group-item list-group-item-action" onclick="show('Channel2');"> <img src="img/benin-business-24.jpg" alt="BB24"> </button>
<button type="button" class="list-group-item list-group-item-action" onclick="show('Channel3');"> <img src="img/eden-tv.jpg" alt="EDENTV"> </button>
<button type="button" class="list-group-item list-group-item-action" onclick="show('Channel4');"> <img src="img/Canal3.jpg" alt="Canal3"> </button>
<button type="button" class="list-group-item list-group-item-action" onclick="show('Channel5');"> <img src="img/golfe-tv-africa.jpg" alt="Golf TV"> </button>
</div>
</div>
<button class="floating-btn ">Chaines <i class="fas fa-play"></i></button>
<!-- -->
<div class="tv">
<div id="Channel1">
<iframe class="pt-2" frameborder="0" allowfullscreen="" width="810" height="465" src="https://player.infomaniak.com?channel=69891&player=10535"></iframe>
</div>
<div id="Channel2" style="display : none; ">
<iframe class="pt-2" frameborder="0" allowfullscreen="" width="810" height="465" src="https://player.infomaniak.com?channel=70625&player=10790"></iframe>
</div>
<div id="Channel3" style="display: none;">
<img class="pt-2" src="/img/tv_noise.gif" width="810" height="465"/>
</div>
<div id="Channel4" style="display: none;">
<iframe class="pt-2" frameborder="0" scrolling="no" allowfullscreen="allowfullscreen" width="810" height="465" src="https://www.creacast.com/play.php?su=bluediamond" allow="autoplay"></iframe>
</div>
<div id="Channel5" style="display: none;">
<iframe class="pt-2" width="810" height="465" src="https://www.youtube-nocookie.com/embed/live_stream?channel=UC98EZ3PHQNrqV-B-CtwAHMA&rel=0&autoplay=1&mute=1" frameborder="0" allowfullscreen="" allow="autoplay" id="widget2"></iframe>
</div>
</div>
<footer>
© Copyright 2021. Made with 🧡 By <a href="https://github.com/duaren" target=blank class="">@duaren</a>
</footer>
<script src="js/main.js"></script>
<!-- Optional JavaScript -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/c950b7a1cb.js" crossorigin="anonymous"></script>
</body>
<script type="text/javascript">
</script>
</html>