-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpop.html
More file actions
111 lines (102 loc) · 3.22 KB
/
pop.html
File metadata and controls
111 lines (102 loc) · 3.22 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Pop</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>Pop
</h1>
<table>
<colgroup>
<col span="1" style="width: 15%;">
<col span="1" style="width: 75%;">
</colgroup>
<tbody>
<hr>
<tr>
<td>
<div class="date">
AUG 28
</div>
<div class="year">2022</div>
</td>
<td>
<a class="header" target="_blank" href="https://anneliaanderson.bandcamp.com/album/blue-boy">
Blue Boy
</a>
</td>
</tr>
<tr>
<td>
<div class="date">
AUG 24
</div>
<div class="year">2022</div>
</td>
<td>
<a class="header" target="_blank" href="https://menitrust.bandcamp.com/album/oncle-jazz">
Oncle Jazz
</a>
</td>
</tr>
<tr>
<td>
<div class="date">
AUG 23
</div>
<div class="year">2022</div>
</td>
<td>
<a class="header" target="_blank"
href="https://open.spotify.com/album/1RHa1VdX6lsLbeedgsV1cb?si=NgqxFt3sQ7ecPjtlmrrLGw">
Pop Food
</a>
</td>
</tr>
<tr>
<td>
<div class="date">
JUL 27
</div>
<div class="year">2022</div>
</td>
<td>
<a class="header" target="_blank" href="https://www.youtube.com/watch?v=e6-HossxeWc">
A Groovy Thing
</a>
</td>
</tr>
</tbody>
</table>
</body>
</html>