-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfavorite_songs.html
More file actions
97 lines (92 loc) · 2.31 KB
/
favorite_songs.html
File metadata and controls
97 lines (92 loc) · 2.31 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Favorite Songs</title>
<style>
/* General Body Styling */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f8f9fa;
}
/* Page Title */
h1 {
text-align: center;
color: #333;
margin-bottom: 20px;
}
/* Table Styling */
table {
width: 80%;
margin: 0 auto;
border-collapse: collapse;
background-color: white;
border: 1px solid #ccc;
}
/* Table Header Styling */
th {
background-color: #4CAF50;
color: white;
padding: 10px;
}
/* Table Body Styling */
td {
padding: 10px;
text-align: left;
border: 1px solid #ccc;
}
/* Alternate Row Colors */
tr:nth-child(even) {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<h1>My Favorite Songs</h1>
<table>
<thead>
<tr>
<th>Song Name</th>
<th>Album</th>
<th>Artist</th>
<th>Year Released</th>
</tr>
</thead>
<tbody>
<tr>
<td>Yonaguni</td>
<td>Single</td>
<td>Bad Bunny</td>
<td>2021</td>
</tr>
<tr>
<td>Callaíta</td>
<td>X 100PRE</td>
<td>Bad Bunny</td>
<td>2019</td>
</tr>
<tr>
<td>Safaera</td>
<td>YHLQMDLG</td>
<td>Bad Bunny</td>
<td>2020</td>
</tr>
<tr>
<td>Tití Me Preguntó</td>
<td>Un Verano Sin Ti</td>
<td>Bad Bunny</td>
<td>2022</td>
</tr>
<tr>
<td>La Canción</td>
<td>Oasis (with J Balvin)</td>
<td>Bad Bunny</td>
<td>2019</td>
</tr>
</tbody>
</table>
</body>
</html>