-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (31 loc) · 1.1 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
31
32
33
<html>
<head>
<title>Hello music!</title>
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no" />
<link rel="stylesheet" type="text/css" href="gmrote.css">
</head>
<body>
<div class="container">
<div id="player">
<div id="currently-playing">
<img id="art" src="http://audioinkradio.com/wp-content/uploads/2013/04/daft-punk-image-album-cover.jpg">
<div class="song-info">
<p id="song">A song</p>
<p id="artist">Daft Punk</p>
</div>
</div>
<div id="player-controls">
<i class="material-icons" id="back-btn">fast_rewind</i>
<i class="material-icons pause" id="pause-btn">pause</i>
<i class="material-icons" id="forward-btn">fast_forward</i>
</div>
</div>
</div>
<div class="glass"></div>
<script type="text/javascript" src="client.js"></script>
<link href='https://fonts.googleapis.com/css?family=Lato:400,300,100,700'
rel='stylesheet' type='text/css'>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
</body>
</html>