-
Notifications
You must be signed in to change notification settings - Fork 1
/
music.html
177 lines (156 loc) · 6.27 KB
/
music.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Music ♬</title>
<link rel="icon" type="image/png" href="images/pleto.png"/>
<link rel="stylesheet" href="sub.css">
</head>
<body>
<div class="bootlegmain">
<center><div class="tabs">
<ul class="datab">
<li><a href="index.html">Main</a></li>
<li><a href="games.html">Games</a></li>
<li><a href="music.html">Music</a></li>
<li><a href="art.html">Art</a></li>
</ul>
</div></center>
<h1>Music... yes i mak crappy mosic!</h1>
<hr>
<h3>Albums</h3>
<table style="width:70%">
<tr> <!--List of Album tables-->
<th>Album Name</th>
<th>Album Thumbnail</th>
<th>Track NO.</th>
<th>Tracks</th>
<th>Date of Release</th>
<th>Links to view</th>
</tr>
<tr> <!--option 1-->
<td>A Plain Adventure</td>
<td><img src="images/APA_cover.jpg" width=125px height=125px></td>
<td>6</td>
<td>
<ol>
<li>A Plain Uprising</li>
<li>Pixalopis V3</li>
<li>Escaping the Shooterbot</li>
<li>The Bunny Song</li>
<li>Exodus</li>
<li>Blank</li>
</ol>
</td>
<td>11/20/2022</td>
<td>
<ul>
<li>Download ZIP (50 MB)</li>
</ul>
</td>
</tr>
</table>
<h3>Singles</h3>
<table style="width:70%">
<tr> <!--Table singles-->
<th>Song Name</th>
<th>Song Thumbnail</th>
<th>Date of Release</th>
<th>Links to view</th>
</tr>
<tr> <!--option 1-->
<td>MidBoss ting (The Mono Crusade)</td>
<td><img src="images/Monothumb.jpg" width=125px height=125px></td>
<td>September 5th 2022</td>
<td>
<ul>
<a href="music/midbosstingfinal.mp3"><li>Download MP3 (1.85 MB)</li></a>
<li>Youtub</li>
</ul>
</td>
</tr>
</table>
<h3>"Gamna's Time Machine"</h3>
<p>Pretty much some old songs I made, converted into MIDI so expect some shit.</p>
<table style="width:70%">
<tr> <!--Table singles-->
<th>Song Name</th>
<th>Date of Release</th>
<th>Links to view</th>
</tr>
<tr> <!--option 1-->
<td>Failed Mission</td>
<td>December 25th 2022</td>
<td>
<ul>
<a href="music/FailedMission.mp3"><li>Download MP3 (1.26 MB)</li></a>
</ul>
</td>
</tr>
<tr> <!--option 2-->
<td>The Actual Town of Suffrage</td>
<td>June 16th 2023</td>
<td>
<ul>
<a href="music/The Actual Town of Suffrage.mp3"><li>Download MP3 (507 KB)</li></a>
</ul>
</td>
</tr>
<tr> <!--option 3-->
<td>Point of No Return</td>
<td>June 16th 2023</td>
<td>
<ul>
<a href="music/Point of No Return.mp3"><li>Download MP3 (664 KB)</li></a>
</ul>
</td>
</tr>
<tr> <!--option 4-->
<td>Last Opponent</td>
<td>June 16th 2023</td>
<td>
<ul>
<a href="music/Last Opponent.mp3"><li>Download MP3 (2 MB)</li></a>
</ul>
</td>
</tr>
</table>
<h3>Remixes</h3>
<table style="width:70%">
<tr> <!--Tables for the remixes-->
<th>Song Name</th>
<th>Song Thumbnail</th>
<th>Original Composer</th>
<th>Original Song</th>
<th>Date of Release</th>
<th>Links to view</th>
</tr>
<tr> <!--option 2-->
<td>Smash 64 Metal Mario Genisis soundfont test</td>
<td>N/A</td>
<td>Hirokazu Ando</td>
<td><a href="https://youtu.be/-DzkPDyraHI">Insert YouTube Link</a></td>
<td>December 11th 2022</td>
<td>
<ul>
<a href="music/MetalMarioSmash64Genisistest.mp3"><li>Download MP3(1.2 MB)</li></a>
</ul>
</td>
</tr>
<tr> <!--option 1-->
<td>Eosd credits but its Super Mario 64</td>
<td>N/A</td>
<td>Jun'ya "ZUN" Ota</td>
<td><a href="https://www.youtube.com/watch?v=SXYZ6KOZAR0&t=4s">Insert YouTube Link</a></td>
<td>December 7th 2022</td>
<td>
<ul>
<a href="music/Eosdcreditsbutitssm64.mp3"><li>Download MP3(2.1 MB)</li></a>
</ul>
</td>
</tr>
</table>
</div>
</body>
</html>