-
Notifications
You must be signed in to change notification settings - Fork 0
/
music.html
61 lines (57 loc) · 2.08 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!-- This is our Music Page! :3 -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="static/normalize.css">
<link href="static/dist/music.css" rel="stylesheet" type="text/css">
<script src="./scripts/date.js"></script>
<title>Music</title>
<link rel="icon" href="./static/imgs/ant-icon.png">
</head>
<body>
<span>
<div class="hamburger absolutelyNot" onclick="navMenu()">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
<div class="circle"></div>
</div>
<nav>
<a href="./index.html"> Home </a>
</nav>
</span>
<h1>Music</h1>
<h2>Coming Soon</h2>
<!-- flex box of playlists -->
<container class="container">
<div>
<abbr title=""><a href=""><img src="static/imgs/notes.webp" alt="music note icon">
</a></abbr>
</div>
<div>
<abbr title=""><a href=""><img src="static/imgs/notes.webp" alt="music note icon">
</a></abbr>
</div>
<div>
<abbr title="The last"><a
href="https://www.youtube.com/watch?v=rbO_vCsryJs&list=PLJR9sKEwENHs5ZA0t3zgHDVvK2ppsU3R2"><img
src="static/imgs/notes.webp" alt="music note icon">
</a></abbr>
</div>
<div>
<abbr title="The_1st"><a href="static/imgs/notes.webp">
</a></abbr>
</div>
<div>
<abbr title="Anythingism"><a
href="https://www.youtube.com/watch?v=C1tjzlVbUd0&list=OLAK5uy_lWu1W4S9M_XqIbVEvMPNNan0g_q5cFs0M"><img
src="static/imgs/notes.webp" alt="music note icon">
</a></abbr>
</div>
</container>
<script src="./scripts/hamborger.js"></script>
</body>
</html>