-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmusic.html
41 lines (31 loc) · 1.22 KB
/
music.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="main">
<img src="img/hans.jpg" height="40px" width="40px">
<h1>SONG:528491</h1>
<h1>Artist:Hans Zimmer</h1>
</div>
<div id="buttons">
<button id="back" type="button" class="btn btn-default btn-xs">
<span class="glyphicon glyphicon-backward"></span>
<button id="play" type="button" class="btn btn-default btn-xs">
<span class="glyphicon glyphicon-play"></span>
</button>
<button id="next" type="button" class="btn btn-default btn-xs">
<span class="glyphicon glyphicon-forward"></span>
</button>
<!--<form>
URL: <input type="text" name="url" id="url" placeholder="https://www.youtube.com/watch?v=57cOmxB12XI"><br>
</form>-->
</div><!--end main -->
<script src="jquery-2.1.4.min.js"></script>
<script src="js/content.js"></script>
</body>
</html>