-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathun_MusicRecommanded.html
78 lines (61 loc) · 1.97 KB
/
un_MusicRecommanded.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Music Recommendations</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
.container {
margin-top: 50px;
}
.music-recommendation {
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
border-radius: 10px;
width: auto;
max-width: 90%;
min-width: 300px;
text-align: left;
}
.music-recommendation h2 {
margin: 0 0 10px 0;
font-size: 24px;
color: #333;
}
.music-recommendation p {
font-size: 16px;
color: #666;
margin: 5px 0;
}
</style>
</head>
<body>
<div class="container">
<h1>Recommended Music</h1>
<div class="music-recommendation">
<h2> <a href="https://music.163.com/song?id=554146664&userid=403387660"> Put It On Me </a></h2>
<p>Lyrics: <br> I know that you'd never feel like I do. I will break into pieces right in front of you</p>
</div>
<!-- <div class="music-recommendation">
<h2> 安静 </h2>
<p>Lyrics: <br>我根本不想分开 <br>
为什么还要我用微笑来带过 <br>
我没有这种天分<br>
包容你也接受他</p>
</div> -->
<div class="music-recommendation">
<h2> <a href="https://music.163.com/song?id=1410118416&userid=403387660">Goin' On </a></h2>
<p>Lyrics: <br> Think about my lady calling someone else a baby <br>
Drives me crazy, so I'm never letting go</p>
</div>
</div>
</body>
</html>