-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsongs.html
More file actions
37 lines (37 loc) · 1.39 KB
/
songs.html
File metadata and controls
37 lines (37 loc) · 1.39 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
<html>
<head>
<title>Album Select</title>
<link rel="stylesheet" type="text/css" href="ipod.css"/>
</head>
<body>
<div id="screen">
<div class="head-bar">
<a href="albums.html">
<img class="back-button" src="images/back_arrow.png">
</a>
</div>
<div class="description-wrapper">
<img class="songs-album-art" src="images/currents.jpg">
<div class="songs-info-wrapper">
<div class="songs-album-name">Currents</div>
<div class="songs-artist-name">Tame Impala</div>
<div class="songs-album-year">2015</div>
</div>
</div>
<div class="songs-list">
<ol>
<li class="songs-text-info">Let it happen</li>
<li class="songs-text-info">Nangs</li>
<li class="songs-text-info">The Moment</li>
<li class="songs-text-info">Yes I'm Changing</li>
<li class="songs-text-info">Eventually</li>
<li class="songs-text-info">Gossip</li>
<li class="songs-text-info">The Less I Know The Better</li>
<li class="songs-text-info">Past Life</li>
<li class="songs-text-info">Disciples</li>
<li class="songs-text-info">'Cause I'm A Man</li>
</ol>
</div>
</body>
</html>
<!--