-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyoutube.html
57 lines (41 loc) · 1.76 KB
/
youtube.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
47
48
49
50
51
52
53
54
55
56
57
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>Carousel Template for Bootstrap</title>
<!-- Bootstrap core CSS -->
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="carousel.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/youtube.css">
</head>
<body>
<main role="main">
<div class="container marketing">
<!-- START THE FEATURETTES -->
<hr class="featurette-divider">
<h1>YouTube 心情點唱機</h1>
<h2></h2>
<!--播放歌曲名稱放這裡-->
<div id="player"></div><!-- YouTube Video Player -->
<br>
<input id="playButton" type="button" value="Play">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://www.youtube.com/iframe_api"></script>
<script src="assets/js/playList.js"></script>
<script src="assets/js/youtube_main.js"></script>
<hr class="featurette-divider">
<!-- /END THE FEATURETTES -->
</div><!-- /.container -->
<!-- FOOTER -->
</main>
<script>window.jQuery || document.write('<script src="assets/js/vendor/jquery-slim.min.js"><\/script>')</script>
<script src="assets/js/vendor/popper.min.js"></script>
<!-- Just to make our placeholder images work. Don't actually copy the next line! -->
<script src="assets/js/vendor/holder.min.js"></script>
</body>
</html>