-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
41 lines (41 loc) · 1022 Bytes
/
home.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>home</title>
<link rel="stylesheet" href="style/screen.css">
<link rel="stylesheet" href="style/reset.css">
<script src="script/move2.js"></script>
<script src="script/Ajax.js"></script>
<script src="script/main.js"></script>
</head>
<body>
<header id="header">
<div id="header_box">
<div id="logo_box">
<img id="logo" src="img/logo1.png" alt="Music Ball">
<span>MUSIC BALL</span>
</div>
<div id="play_box">
<div id="picture"></div>
<div id="music_box">
<span id="music">歌曲名</span><br/>
<span id="singer">歌手</span>
<audio id="audio" controls="controls" autoplay="autoplay">
<source id="sour1" src=""></source>
<source id="sour2" src=""></source>
</audio>
</div>
</div>
<div id="switch"><span>换一批</span></div>
</div>
</header>
<div id="content_box">
<div id="content">
</div>
</div>
<footer>
©2015 技术支持 Lion Soul
</footer>
</body>
</html>