-
Notifications
You must be signed in to change notification settings - Fork 0
/
ost.html
128 lines (119 loc) · 3.88 KB
/
ost.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>OST</title>
<link rel="icon" type="image/x-icon" href="./favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./index.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&family=JetBrains+Mono&display=swap');
</style>
</head>
<body>
<div class="nav">
<input type="checkbox" id="nav-check">
<div class="nav-header">
<a class="nav-title" href="./index.html">
Offbeat
</a>
</div>
<div class="nav-btn">
<label for="nav-check">
<span></span>
<span></span>
<span></span>
</label>
</div>
<div class="nav-links">
<a href="./games.html">Games</a>
<a href="./movies.html">Movies</a>
<a href="./music.html">Music</a>
<a href="./index.html">About</a>
</div>
</div>
<hr>
<h1>OST<br>
<div class="description">Soundtracks from video games. These are direct links.</div>
</h1>
<table>
<colgroup>
<col span="1" style="width: 15%;">
<col span="1" style="width: 75%;">
</colgroup>
<tbody>
<hr>
<tr>
<td>
<div class="date">
SEP 4
</div>
<div class="year">2023</div>
</td>
<td>
<a class="header" target="_blank" href="https://www.youtube.com/watch?v=Jm932Sqwf5E">
DOOM
</a>
</td>
</tr>
<tr>
<td>
<div class="date">
AUG 25
</div>
<div class="year">2023</div>
</td>
<td>
<a class="header" target="_blank"
href="https://www.youtube.com/playlist?list=PLf2bi8C4BqaxJ9jWCm9K2qkTk0048IZzq">
Bullets Per Minute
</a>
</td>
</tr>
<tr>
<td>
<div class="date">
AUG 24
</div>
<div class="year">2023</div>
</td>
<td>
<a class="header" target="_blank"
href="https://wicrecordings.bandcamp.com/album/katana-zero-original-soundtrack">
Katana Zero
</a>
</td>
</tr>
<tr>
<td>
<div class="date">
AUG 21
</div>
<div class="year">2023</div>
</td>
<td>
<a class="header" target="_blank"
href="https://heavenpierceher.bandcamp.com/album/ultrakill-infinite-hyperdeath">
Ultrakill
</a>
</td>
</tr>
<tr>
<td>
<div class="date">
JUL 27
</div>
<div class="year">2023</div>
</td>
<td>
<a class="header" target="_blank"
href="https://andrewhulshult.bandcamp.com/album/dusk-original-game-soundtrack">
Dusk
</a>
</td>
</tr>
</tbody>
</table>
</body>
</html>