-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsongbank.html
More file actions
84 lines (72 loc) · 3.84 KB
/
Copy pathsongbank.html
File metadata and controls
84 lines (72 loc) · 3.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ugud Bangers</title>
<link rel="stylesheet" type="text/css" media="all" href="styles.css">
<link rel="stylesheet" href="animations.css">
<script src="songplay.js" defer></script>
</head>
<body class="sidebar-collapsed">
<div id="tswcontainer">
<div id="tswheader" class="gradient">
<!-- start of header section: insert your logo, etc, here -->
<div class="header-content">
<img src="media/logo.png" class="insignia" id="toggle-sidebar">
<audio loop autoplay controls>
<source src="media/Lynyrd Skynyrd - Free Bird (Official Audio).mp3">
</audio>
</div>
<!-- end of header section: insert your logo, etc, above this line -->
</div>
<div id="tswcontent">
<div id="tswcontproper">
<!-- start of content column: insert your content here -->
<h1 class="title">Hello, and Welcome to my Song Bank!</h1>
<ol class="song-list">
<li class="song-entry" data-song-src="media/song1.mp3">
<img src="media/eiikm.png" alt="Album art for Even If It Kills Me">
</li>
<li class="song-entry" data-song-src="media/song2.mp3">
<img src="media/hof.png" alt="Album art for Heaven's On Fire">
</li>
<li class="song-entry" data-song-src="media/song3.mp3">
<img src="media/kmh.png" alt="Album art for Kickstart My Heart">
</li>
<li class="song-entry" data-song-src="media/song4.mp3">
<img src="media/som.png" alt="Album art for Sound of Madness">
</li>
<li class="song-entry" data-song-src="media/song5.mp3">
<img src="media/tmo.png" alt="Album art for Take Me Out">
</li>
</ol>
<!-- end of content column: put your content above this line -->
</div>
</div>
<div id="tswsidecol">
<div id="tswsideproper">
<!-- start of side column: insert your navigation menu, etc, here -->
<div id="tswcssbuttons">
<ul>
<li><a href="index.html" title="Home"><img src="media/home.png" alt="Home"></a></li>
<li><a href="aboutme.html" title="About Me"><img src="media/aboutme.png" alt="About Me"></a></li>
<li><a href="projects.html" title="Projects"><img src="media/projects.png" alt="Projects"></a></li>
<li><a href="songbank.html" title="Song Bank"><img src="media/songs.png" alt="Song Bank"></a></li>
</ul>
</div>
<!-- end of side column: put your navigation menu, etc, above this line -->
</div>
</div>
<div id="tswfooter" class="gradient">
<!-- start of footer section: insert your copyright notice, etc, here -->
<p>
Contact Me: yanoshkin@proton.me
</p>
<!-- end of footer section: insert your copyright notice, etc, above this line -->
</div>
</div>
<script src="virus.js" defer></script>
<script src="sidebar.js" defer></script>
</body>
</html>