summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2024-07-06 17:46:43 -0500
committersanine <sanine.not@pm.me>2024-07-06 17:46:43 -0500
commitf747a43eb9d410be0fe4e2cb6e340db9f949fbba (patch)
tree970ee7ade68438cf6a4c24c33989806e748a0917 /index.html
parent2a2dadfb9739874044bdcc20cf6152115a04bc07 (diff)
add basic style
Diffstat (limited to 'index.html')
-rw-r--r--index.html10
1 files changed, 8 insertions, 2 deletions
diff --git a/index.html b/index.html
index d724516..fba6177 100644
--- a/index.html
+++ b/index.html
@@ -2,11 +2,16 @@
<html>
<head>
<meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
<title>robotic</title>
<script type="module" src="main.js"></script>
<script src="mathjs/mathjs-expression-parser.js"></script>
+ <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=Jura:wght@300..700&display=swap" rel="stylesheet">
+ <link href="style.css" rel="stylesheet">
</head>
- <body>
+ <body style="font-family: Jura;">
<audio id="music-starboard" src="sounds/music/starboard.mp3"></audio>
<audio id="music-minute" src="sounds/music/minute.mp3"></audio>
<audio id="music-cribwhistling" src="sounds/music/cribwhistling.mp3"></audio>
@@ -17,8 +22,9 @@
<audio id="sfx-wrong" src="sounds/sfx/gui-beep/33789__jobro__5-beep-c.wav"></audio>
<audio id="sfx-buttonenter" src="sounds/sfx/gui-beep/33777__jobro__1-beep-c.wav"></audio>
- <audio id="sfx-buttonclick" src="sounds/sfx/gui-beep/33778__jobro__2-beep-a.wav"></audio>
+ <audio id="sfx-buttonclick" src="sounds/sfx/gui-beep/33780__jobro__2-beep-c.wav"></audio>
<div id="root"></div>
+ <div id="overlay"></div>
</body>
</html>