-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (84 loc) · 2.42 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
<!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>
<style>
#search_result {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: auto;
gap: 20px;
background-color: silver;
width: 95%;
margin: 20px auto;
/* border-radius: 5%; */
}
#menu{
display: grid;
grid-template-columns: 1fr 2fr 1fr;
grid-template-rows: auto;
}
#firstMenu{
display: flex;
gap: 30px;
margin: 3px 20px;
}
#firstMenu img{
width: 50%;
height: 35px;
}
#middleMenu{
height: 35px;
margin: 3px 40px;
}
#middleMenu>input{
width: 80%;
height: 35px;
}
#middleMenu>button{
height: 35px;
}
.fa-solid fa-microphone{
height: 35px;
}
#lastMenu{
display: flex;
gap: 30px;
/* color: black; */
margin: 3px 40px;
flex-direction: row-reverse;
}
#lastMenu img{
height: 42px;
margin-top: -5px;
}
</style>
</head>
<body>
<div id="menu">
<div id="firstMenu">
<i class="fa-solid fa-bars fa-2x"></i>
<img src="./Images/youtube-final.jpg" alt="">
</div>
<div id="middleMenu">
<input type="search" id="search" placeholder="search here">
<button onclick="searchVideos()"><i class="fa-solid fa-magnifying-glass">Search </i></button>
<i class="fa-solid fa-microphone"></i>
</div>
<div id="lastMenu">
<i class="fa-solid fa-user fa-2x"></i>
<img src="./Images/grid.png" alt="">
<i class="fa-solid fa-bell fa-2x "></i>
<i class="fa-solid fa-circle-plus fa-2x"></i>
</div>
</div>
<!-- <input type="text" id="search" placeholder="search here"> -->
<!-- <button onclick="searchVideos()"> Search Videos</button> -->
<div id="search_result"> </div>
</body>
</html>
<script src="./scripts/index.js">
</script>