-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Search By Lyrics</title>
</head>
<body>
<h1 style="text-align: center; text-transform: uppercase;">Search By Lyrics</h1>
<div id="search-container">
<script async src="https://cse.google.com/cse.js?cx=010888020378719548795:kgxc0prnsev"></script>
<div class="gcse-search"></div>
<div id="results">
</div>
</div>
<div id="connect-container">
<h1>Search By Lyrics</h1>
<p>With Spotify connected, you'll be able to directly play the matched song, along with other perks. Otherwise you'll just get the song name.</p>
<br>
<button onclick="connectSpotify();" class="btn btn-primary">Connect Spotify</button>
<button onclick="continueWithoutSpotify();" class="btn btn-secondary">Continue without</button>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src="app.js" type="text/javascript"></script>
<link rel="stylesheet" href="style.css">
</body>
</html>