forked from Amanyara21/playlistlength.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
108 lines (103 loc) · 5.24 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
<!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.0">
<meta name="description"
content="YTPlaylist-length Calculator is a YouTube Playlist Length Analyzer Tool that allows you to find out duration of YouTube full playlist or duration of some videos in playlist by entering video Numbers. ">
<title>YouTube Playlist-Length</title>
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
<link rel="icon" href="img/favicon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/playlist.css">
<link rel="stylesheet" href="css/timetable.css">
<link rel="stylesheet" href="css/header&share.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
</head>
<body>
<header class=".bg-dark" style="background-color: black; ">
<div class="heading container .bg-dark">
<div class="logo">
<h1>YTPlaylist Length</h1>
</div>
<div class="linking">
<ul>
<li class="nav-linker"><a class="hyperlinks" href="#">Home</a></li>
<li class="nav-linker"><a class="hyperlinks" href="table.html">Time Table</a></li>
<li class="nav-linker"><a class="hyperlinks" href="Notes.html">Notes</a></li>
<li class="nav-linker"><a class="hyperlinks" href="https://amankumar21.netlify.app/">About Me</a></li>
</ul>
</div>
<div class="menu-lines">
<i id="menu" style=" font-size: 25px;"class="fa fa-bars" ></i>
</div>
</div>
</header>
<section class="container marg">
<div class="getUrl d-flex flex-column">
<label>Get the Timetable for any YouTube playlist :</label>
<div class="inputbtn d-flex marg2">
<input type="text" id="form1" placeholder="youtube.com/playlist?list=ID">
<button class="cal" id="cal">Calculate</button>
</div>
</div>
<div class="videoNumbers d-flex flex-column my-3">
<div class="text">
<p>Enter Video starting and ending Number in Input tags given below <span class="color">( For full Playlist Leave tags empty)</span> : </p>
</div>
<div class="inputvals d-flex limits">
<input type="number" min="0" id="edit1" class="edit from" placeholder="From">
<input type="number" min="0" id="edit2" class="edit from" placeholder="To">
</div>
<div class="text">
<p>
You can enter playlistId, playlist Link to get length of playlist.<br>
Or can get length of some videos by entering video Numbers in Input sections.
</p>
</div>
</div>
</section>
<hr>
<section class="container">
<div id="result">
</div>
</section>
<hr style="opacity : 0.2;">
<section class="about container">
<div class="text">
<h2 class="text-center">Youtube Playlist Length Calculator</h2>
<p class="text-center">Youtube Playlist Length calculator is a tool used to find the Duration of videos present in a playlist.
Here You can find the full playlist duration as well as the duration of some videos present in a playlist. This is the only Youtube playlist length calculator which gives you the duration of some desired videos in a playlist.
For finding the duration of playlist paste the link of playlist in Input tag and write the number of videos in from and to input tag.
</p>
</div>
<hr style="opacity: 0.2;">
</section>
<section class="contact">
<div class="contact-btn">
<a href="https://www.linkedin.com/in/aman-kumar-Aman2104/">
<i class="fa fa-linkedin"></i>
</a>
<a href="https://twitter.com/Amanyara21">
<i class="fa fa-twitter"></i>
</a>
<a href="https://github.com/Aman2104">
<i class="fa fa-github"></i>
</a>
<a href="mailto:[email protected]">
<i class="fa fa-envelope"></i>
</a>
<div>
<i class="fa fa-share-alt"></i>
</div>
</div>
</section>
<footer style="height: 100px;">
<p class="text-center">Made by <span class="name" style="color: blue;"><a style="color: blue; text-decoration: none;"href="https://www.linkedin.com/in/aman-kumar-Aman2104/"> Aman Kumar</a></span></p>
</footer>
<script src="javascript/js.js"></script>
<script src="javascript/share.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa" crossorigin="anonymous"></script>
</body>
</html>