-
Notifications
You must be signed in to change notification settings - Fork 1
/
search.html
116 lines (108 loc) · 2.46 KB
/
search.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
<!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">
<title>Document</title>
<script src="jquery.js"></script>
<style>
*{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.video-box{
display: inline-block;
width: 29vw;
background-color: #9e385b;
color: white;
margin: 15px;
text-align: center;
height: 45vh;
border-radius: 20px;
}
.imgg{
width: 92%;
height: 25vh;
margin-top: 20px;
border-radius: 12px;
}
.heading{
font-size: 30px;
color: blueviolet;
text-align: center;
padding: 20px;
}
.search_options{
width: 100vw;
justify-content: center;
text-align: center;
}
.clear{
display: none;
}
#search{
padding: 10px;
width: 48vw;
border: 2px solid black;
border-radius: 21px;
margin: 12px;
}
#search-btn{
padding: 10px;
border: 2px solid #8E24AA;
border-radius: 10px;
background-color: #8E24AA;
color: white;
cursor: pointer;
}
.play{
background-color: rgb(178, 233, 235);
padding: 9px;
border-radius: 12px;
border: 1px;
margin: 10px;
cursor: pointer;
}
#back{
position: absolute;
left: 90%;
top: 0%;
font-size: 20px;
cursor: pointer;
}
#back{
margin-top: 20px;
cursor: pointer;
background-color: #2320b5;
border: 1px;
color: white;
padding: 7px;
border-radius: 10px
}
#alternate{
width: 40vw;
height: 40vh;
color: grey;
/* background-color: yellow; */
align-items: center;
text-align: center;
margin: auto;
font-size: 34px;
margin-top: 3%;
}
</style>
</head>
<body>
<div class="heading">Create your Playlist Here! </div>
<div class="search_options">
<input type="text" name="search" id="search">
<button id="search-btn">Search</button>
</div>
<div id="alternate">
Search for your interest!
</div>
<div class="videos" id="videos"></div>
<button id="back">Back</button>
</body>
<script src="search.js"></script>
</html>