-
Notifications
You must be signed in to change notification settings - Fork 0
/
rock.html
126 lines (118 loc) · 3.81 KB
/
rock.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Rock</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">
<link rel="stylesheet" href="./posts.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>Rock
</h1>
<table>
<colgroup>
<col span="1" style="width: 15%;">
<col span="1" style="width: 75%;">
</colgroup>
<tbody>
<hr>
<tr>
<td>
<div class="date">
AUG 5
</div>
<div class="year">2022</div>
</td>
<td>
<a class="header" target="_blank" href="https://www.youtube.com/watch?v=kGLo8tl5sxs">
Echoes
</a>
</td>
</tr>
<tr>
<td>
<div class="date">
FEB 24
</div>
<div class="year">2022</div>
</td>
<td>
<a class="header" target="_blank"
href="https://open.spotify.com/album/3cQO7jp5S9qLBoIVtbkSM1?si=pPhtbcnUSzSROf98WGA6CA">
Blurryface
</a>
</td>
</tr>
<tr>
<td>
<div class="date">
FEB 23
</div>
<div class="year">2022</div>
</td>
<td>
<a class="header" target="_blank"
href="https://open.spotify.com/album/4wExFfncaUIqSgoxnqa3Eh?si=ef4iEgDuRuCS1i2LX5Gsaw">
Mothership
</a>
</td>
</tr>
<tr>
<td>
<div class="date">
JAN 15
</div>
<div class="year">2022</div>
</td>
<td>
<a class="header" target="_blank" href="https://www.youtube.com/watch?v=DWuAn6C8Mfc">
In Rainbows
</a>
</td>
</tr>
<tr>
<td>
<div class="date">
JAN 4
</div>
<div class="year">2022</div>
</td>
<td>
<a class="header" target="_blank"
href="https://open.spotify.com/album/0D6mhsFYGQvysqDMeFMCR1?si=kq0bgjDkSAaS7uFlO6XaJA">
The Downward Spiral
</a>
</td>
</tr>
</tbody>
</table>
</body>
</html>