-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (119 loc) · 3.74 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>WatchTV</title>
<!-- Compiled and minified CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"
/>
<!-- Materializecss icons -->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<!-- Google Sans font -->
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Google+Sans"
as="style"
/>
<!-- custom css -->
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body>
<header>
<nav class="z-depth-0">
<div class="nav-wrapper nav-color">
<a href="index.html" class="brand-logo left">WatchTV</a>
<ul class="right">
<li>
<a href="#sharebtn" class="btn-flat modal-trigger"
>Share <i class="material-icons right large">share</i></a
>
</li>
</ul>
</div>
</nav>
</header>
<main>
<div class="container">
<div class="section">
<div class="row">
<div class="col s12 m6 l6 banner-text">
<h1 class="cyan-color">WatchTV</h1>
<p class="flow-text mid-white">
Watch numerous number of tv channels from your browser with less
buffering at any time
</p>
<a href="#channelScrollID" class="btn btn-large"
>Browse channels</a
>
</div>
<div class="col s12 m6 l6">
<img
src="assets/img/movie.svg"
alt="moviesvg"
class="responsive-img"
/>
</div>
</div>
</div>
<!-- Recent channels -->
<div id="recent12ChannelsID"></div>
<!-- Categories -->
<div class="section" id="channelScrollID">
<div class="row">
<div class="col s12">
<h4 class="mid-white">All channels</h4>
<br />
<div id="categoryList"></div>
</div>
</div>
</div>
</div>
</main>
<footer class="page-footer">
<div class="container center-align">
©
<script>
let dt = new Date();
document.write(dt.getFullYear());
</script>
Copyright Zubayer, Made with ❤️
</div>
</footer>
<div id="sharebtn" class="modal">
<div class="modal-content">
<div class="center-align">
<h5 class="mid-white">Share with your friends</h5>
<br />
<p>
<a
href="https://twitter.com/intent/tweet?text=Watch numerous number of tv channels from your browser with less buffering at any time//https://pro-js.github.io/watchtv?ref=twitter_share"
class="btn share-btn"
>Twitter</a
>
</p>
<p>
<a
href="https://www.facebook.com/sharer/sharer.php?u=https://teamtigers.github.io/watchtv?ref=facebook_share"
class="btn share-btn"
>
Facebook</a
>
</p>
</div>
</div>
</div>
<!-- Minified jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<!-- Custom js -->
<script src="assets/js/app.js"></script>
<script src="assets/js/index.js"></script>
</body>
</html>