-
Notifications
You must be signed in to change notification settings - Fork 10
/
textonly.html
31 lines (31 loc) · 1007 Bytes
/
textonly.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">
<head>
<meta charset="UTF-8">
<title>Google Youtube Music Widget</title>
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles/textonly.css">
<script type="text/javascript" src="class/jquery-3.4.1.min.js"></script>
<script src="https://cdn.socket.io/4.7.4/socket.io.min.js" integrity="sha384-Gr6Lu2Ajx28mzwyVR8CFkULdCU7kMlZ9UthllibdOSo6qAiN+yXNHqtgdTvFXMT4" crossorigin="anonymous"></script>
<script type="text/javascript" src="viewer.js"></script>
</head>
<!--
Created by Topik @ https://topik.dev
https://github.com/topik/google-youtube-music-obs-widget
-->
<body class="isOffline">
<main>
<div class="online">
<div class="song-info">
<div class="song-info__text_info">
<div class="song-info__artist">
<div class="song-info__artist-name" title="Artist"></div>
</div>
<div class="song-info__title" title="Title"></div>
</div>
</div>
</div>
</main>
</body>
</html>