-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreatedOutput.html
More file actions
38 lines (32 loc) · 1.13 KB
/
createdOutput.html
File metadata and controls
38 lines (32 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Spotify Data</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="app-shell">
<header class="app-header">
<h1>Songs</h1>
<p>Generated using Python + Spotify API</p>
</header>
<main class="song-list"><div class="song-row">
<img class="song-cover" src="https://upload.wikimedia.org/wikipedia/en/5/56/Clairo_-_Immunity.png" alt="Album Cover" />
<div class="song-info">
<div class="song-title">Alewife</div>
<div class="song-artist">Clairo / Immunity</div>
</div>
<div class="song-data">4:10</div>
</div><div class="song-row">
<img class="song-cover" src="https://upload.wikimedia.org/wikipedia/en/5/56/Clairo_-_Immunity.png" alt="Album Cover" />
<div class="song-info">
<div class="song-title">Bags</div>
<div class="song-artist">Clairo / Immunity</div>
</div>
<div class="song-data">3:20</div>
</div></main>
</div>
</body>
</html>