-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.15 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js"></script>
<script src="sketch.js"></script>
<link rel="stylesheet" href="styles.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100&family=Noto+Serif+JP:wght@200&display=swap"
rel="stylesheet">
</head>
<body>
<div id="title">
<h1>F i r s t   L o v e 初恋</h1>
</div>
<div id="audio-container">
<audio id="song">
<source src="static/firstLove.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</div>
<div id="canvasbox">
<main>
</main>
</div>
<div id="controls">
<h2>Space: ♫</h2>
<h2>← Remove snow</h2>
<h2>Tap or → Add snow</h2>
</div>
<div id="credit">
<h5><i>Song: 宇多田ヒカル - First Love</i> <a href="https://github.com/jaabberwocky/first-love">[about]</a></h5>
</div>
</body>
</html>