-
Notifications
You must be signed in to change notification settings - Fork 3
/
nowplaying.html
35 lines (31 loc) · 1.44 KB
/
nowplaying.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" href="static/favicon/favicon.ico" />
<title>NPv6</title>
<link href="https://cdn.jsdelivr.net/npm/halfmoon@1.1.1/css/halfmoon-variables.min.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
</head>
<body class="with-custom-webkit-scrollbars with-custom-css-scrollbars">
<div id="now-playing-fullscreen">
<div class="row">
<div id="now-playing-text-col" class="col">
<div class="title">Now Playing</div>
<h4 id="now-playing-track-name" class="semi-bold"></h4>
<h6>
<span id="now-playing-artist-name"></span> <br />
<span id="now-playing-album-name"></span>
</h6>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/halfmoon@1.1.1/js/halfmoon.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/color-thief/2.3.0/color-thief.umd.js"></script>
<script src="js/nowplaying.js"></script>
</body>
</html>