-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhome.html
48 lines (44 loc) · 917 Bytes
/
home.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
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<link rel="stylesheet" href="css/home.css">
</head>
<body onload="init()">
<br><br><br>
<div id="search">
<h2>Welcome</h2>
<br>
<form onsubmit="search();return false" method="get">
<div>
<input id="search_box" type="text">
<span class="material-symbols-outlined">
search
</span>
</div>
</form>
</div>
<div id="trending">
<h2>Trending Songs</h2>
<p id="trending_songs"></p>
<h2>Trending Albums</h2>
<p id="trending_albums"></p>
</div>
<p id="song_results_title">
</p>
<p id="song_results">
</p>
<h1>Albums</h1>
<p id="albums">
</p>
<h1>Playlists</h1>
<p id="playlists">
</p>
<h1>Charts</h1>
<p id="charts">
</p>
<script src="scripts/home.js"></script>
</body>
</html>