-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 921 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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'>
<title>SpotLoader</title>
<link rel='stylesheet' href='./css/style.css'>
</head>
<body>
<div id='header'>
<div id='title-box'>
<div id='title'>SpotLoader</div>
<div id='subtitle'>Download Playlists from Spotify</div>
</div>
<div id='links'>
<a href='https://github.com/liam-ilan/spotloader' id='github-link' class='link'>Github</a>
</div>
</div>
<div id='container'>
<input id='link-input' placeholder='Link to playlist, album, etc.'><br>
<div id='loading'>
<span id='loading-icon'>↻</span> loading
</div>
<button id='download-button'>
<span id='download-icon'>↓</span> Download
</button>
</div>
<script src='./js/utils.js'></script>
<script src='./js/index.js'></script>
</body>
</html>