-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
46 lines (45 loc) · 1.49 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="popup.css">
<title>Document</title>
</head>
<body>
<div class="modal-con">
<div class="modal-header">
<h2>SoundCloud Cover Art Downloader</h2>
</div>
<br/>
<div class="modal-body" id="info-content">
<div class="row">
<div class="col-4">
<a id="img-open-newtab" href="" target="_blank">
<img id="cover-art" src="" alt="cover-art" width="100%">
</a>
</div>
<div class="col-8">
<h3 id="song"></h3>
<h4 id="artist"></h4>
</div>
</div>
<a href="" id="download-url" target= "_blank" download>
<button id="download-btn" class="btn btn-primary btn-block">
download artwork
</button>
</a>
</div>
<div class="modal-body modal-msg" id="msg-content">
<span>
<h3 id="msg"></h3>
</span>
</div>
<div class="modal-footer">
Developed by <a href="https://github.com/yunghog" target="_blank">Samartha</a>
</div>
</div>
<script type="text/javascript" src="main.js"></script>
</body>
</html>