-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearchbar
More file actions
33 lines (33 loc) · 809 Bytes
/
searchbar
File metadata and controls
33 lines (33 loc) · 809 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet"
href="glowing.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Search bar</title>
</head>
<body>
<ul>
<li>
<div class="comtainer">
<input id="searchbar"
onkeyup="search_artist()"
type="text" name="search"
placeholder="Search artist...">
<section>
<img src="Eminem.webp" alt="Avatar">
<img src="Kany Garcia.avif" alt="Avatar">
<img src="La-india.png" alt="Avatar">
<img src="Zion-Lennox.avif.webp" alt="Avatar">
</section>
<ul id='list'>
<li class="artist">Eminem</li>
<li class="artist">Doja Cat</li>
<li class="artist">La india</li>
<li class="artist">Kany Garcia</li>
</ul>
</div>
<script src="search.js"</script>
</body>
</html>