35 lines
984 B
HTML
35 lines
984 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>infinifi</title>
|
|
<link rel="stylesheet" href="./style.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<main>
|
|
<h1 class="header">infinifi</h1>
|
|
<h2>infinite lo-fi music in the background</h2>
|
|
<div class="button-container">
|
|
<button id="play-btn" class="button">play</button>
|
|
</div>
|
|
<div class="volume-slider-container">
|
|
<output id="current-volume-label" for="volume-slider">100%</output>
|
|
<input id="volume-slider" type="range" min="0" max="100" step="1" />
|
|
</div>
|
|
</main>
|
|
<img class="cat" src="./images/cat-0.png"></img>
|
|
<img class="eeping-cat" src="./images/eeping-cat.png"></img>
|
|
</div>
|
|
|
|
<footer>
|
|
<span>made by kennethnym <3 · </span>
|
|
<a href="https://github.com/kennethnym/infinifi">github</a>
|
|
</footer>
|
|
|
|
<canvas id="bg"></canvas>
|
|
|
|
<script type="text/javascript" src="./bg.js"></script>
|
|
<script type="text/javascript" src="./script.js"></script>
|
|
</body>
|
|
</html>
|