forked from waterval/spotify-search-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (30 loc) · 1004 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<title>Spotify Search</title>
<link rel="stylesheet" href="styles.css" />
<link rel="shortcut icon" href="#" />
</head>
<body>
<div id="body-container">
<div id="search-container">
<input
class="input"
type="text"
name="user-input"
placeholder="Search Spotify..."
/>
<select class="artist-or-album">
<option>artist</option>
<option>album</option>
</select>
<button class="search-button">search</button>
</div>
<div id="results-text"></div>
<div id="results-container"></div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="script.js"></script>
</body>
</html>