-
Notifications
You must be signed in to change notification settings - Fork 3
/
search.html
40 lines (40 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="/img/song.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>bread music player</title>
</head>
<body>
<div w3-include-html="components/navbar.html"></div>
<div w3-include-html="components/player.html"></div>
<script src="include.js"></script>
<center><h1 id="title">Search</h1></center>
<br>
<center><input type="text" class="search" placeholder="Search your songs, playlists, or artists..."></center>
<div class="searchresult">
<div>
<h2>Search Result</h2>
<p>Search Description</p>
</div>
<img class="cover" src="../../img/recyclebin.png">
</div>
<div class="searchresult">
<div>
<h2>Search Result</h2>
<p>Search Description</p>
</div>
<img class="cover" src="../../img/recyclebin.png">
</div>
<div class="searchresult">
<div>
<h2>Search Result</h2>
<p>Search Description</p>
</div>
<img class="cover" src="../../img/recyclebin.png">
</div>
<script src="script.js"></script>
</body>
</html>