-
Notifications
You must be signed in to change notification settings - Fork 0
/
kpop.html
124 lines (117 loc) · 4.49 KB
/
kpop.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="assets/img/logoBulet.png" type="image" sizes="16x16">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/premium.css">
<link rel="stylesheet" href="assets/css/toplist.css">
<title>Create your own music - rxplayer</title>
</head>
<body>
<nav>
<div class="logo">
<a href="index.html"><img src="assets/img/logo.png" alt="logorxplayer"></a>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="premium.html">Premium</a></li>
<li><a href="toplist.html">Top List</a></li>
<li>
<div class="dropdown">
<button class="dropbtn">Genre</button>
<div class="dropdown-content">
<a href="kpop.html">K-POP</a>
<a href="pop.html">POP</a>
</div>
</div>
</li>
<li class="register"><a href="register.html">Register</a></li>
</ul>
<div class="menu-toggle">
<span></span>
<span></span>
<span></span>
</div>
</nav><br><br>
<div class="container">
<h3 class="text-auto">K-POP</h3>
<div class="toplist">
<table>
<thead>
<tr id="table">
<th id="table">SONG NAME</th>
<th id="table">SONG ARTIST</th>
<th id="table">SONG IMAGE</th>
</tr>
</thead>
<tbody>
<tr id="table">
<td id="table">Eight(에잇)</td>
<td id="table">IU(아이유) _ (Prod.&Feat. SUGA of BTS)</td>
<td id="table"><img src="assets/img/IU_EIGHT_FT_SUGA.jpg" alt="fb" height=100 width=100></td>
</tr>
<tr id="table">
<td id="table">Any song(아무노래)</td>
<td id="table">ZICO(지코)</td>
<td id="table"><img src="assets/img/zico-anysong.jpg" alt="fb" height=100 width=100></td>
</tr>
<tr id="table">
<td id="table">뚜두뚜두 (DDU-DU DDU-DU)</td>
<td id="table">BLACKPINK</td>
<td id="table"><img src="assets/img/blackpink-dudu.png" alt="fb" height=100 width=100></td>
</tr>
<tr id="table">
<td id="table">레드벨벳 'Psycho'</td>
<td id="table">Red Velvet</td>
<td id="table"><img src="assets/img/redvelvet-psycho.jpg" alt="fb" height=100 width=100></td>
</tr>
<tr id="table">
<td id="table">Boy With Luv</td>
<td id="table">BTS (feat. Halsey)</td>
<td id="table"><img src="assets/img/bts-boywithluv.jpg" alt="fb" height=100 width=100></td>
</tr>
<tr id="table">
<td id="table">Love Shot</td>
<td id="table">EXO 엑소</td>
<td id="table"><img src="assets/img/exo-loveshot.jpg" alt="fb" height=100 width=100></td>
</tr>
<tr id="table">
<td id="table">FIRE</td>
<td id="table">BTS</td>
<td id="table"><img src="assets/img/bts-fire.jpeg" alt="fb" height=100 width=100></td>
</tr>
<tr id="table">
<td id="table">Blueming(블루밍)</td>
<td id="table">IU(아이유)</td>
<td id="table"><img src="assets/img/iu-blueming.jpg" alt="fb" height=100 width=100></td>
</tr>
<tr id="table">
<td id="table">사랑을 했다(LOVE SCENARIO)</td>
<td id="table">iKON</td>
<td id="table"><img src="assets/img/ikon-lovescenario.jpg" alt="fb" height=100 width=100></td>
</tr>
<tr id="table">
<td id="table">Kill This Love</td>
<td id="table">BLACKPINK</td>
<td id="table"><img src="assets/img/blackpink-killthislove.png" alt="fb" height=100 width=100></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="footer">
<div class="follow">
<h3>FOLLOW US :</h3>
<a href="https://www.instagram.com/" target="_blank"><img src="assets/img/ig.png" alt="ig"></a>
<a href="https://twitter.com/" target="_blank"><img src="assets/img/tw.png" alt="tw"></a>
<a href="https://www.facebook.com/" target="_blank"><img src="assets/img/fb.png" alt="fb"></a>
</div>
</div>
<script src="assets/js/jquery-3.5.1.min.js"></script>
<script src="assets/js/script.js"></script>
<script src="assets/js/slider.js"></script>
<script src="assets/js/formValidate.js"></script>
</body>
</html>