-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (66 loc) · 2.98 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="color-scheme" content="light dark">
<title>Youtube ZEN</title>
<link rel="icon" type="image/png" href="favicon.ico">
<!-- Import the Bootstrap CSS CDN -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap-dark-5@1.1.3/dist/css/bootstrap-dark-plugin.min.css" rel="stylesheet">
<meta name="theme-color" content="#111111" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#eeeeee" media="(prefers-color-scheme: dark)">
<style>
.custom_vid{
width: 60%;
height:60vh;
display: block;
margin-left: auto;
margin-right: auto;
}
.vid{
border-radius: 2% ;
}
@media screen and (max-width: 600px) {
.vid {
width: 100%;
height: 40vh;
margin: 2%;
border-radius: 2%;
}
}
</style>
</head>
<body>
<!--remove -->
<div class="container">
<br><br>
<h1>Youtube ZEN</h1>
<form id="form" autocomplete="off">
<div class="form-group" autocomplete="false">
<input type="text" class="form-control" id="search">
</div>
<br>
<div class="form-group">
<input type="submit" class="btn btn-danger me-1 mb-1 mt-1" value="Search">
<input type='button' id='btn2' class="btn btn-primary me-1 mb-1 mt-1" value='Playlist Search'>
<input type='button' id='btn3' class="btn btn-secondary me-1 mb-1 mt-1" value='Search by ID or URL'>
<input type="range" class="slider" name="no of videos " value="3" min="1" max="10" step="1">
<label for="slider">No of videos </label>
</div>
</form>
<br>
<div class="row">
<div class="col-md-12">
<div id="videos" class="space">
</div>
</div>
</div>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script type="text/javascript" src="config.js"></script>
<script src="script.js"></script>
</html>