first commit

This commit is contained in:
Auric Vente
2024-07-31 23:26:11 -06:00
commit 62d26f6482
31 changed files with 4697 additions and 0 deletions

24
index.html Normal file
View File

@@ -0,0 +1,24 @@
<html>
<head>
<title>Oracle</title>
<link rel="shortcut icon" href="favicon.ico?v=1" type="image/x-icon">
<script src="js/base.js"></script>
<script src="js/words.js"></script>
<link rel="stylesheet" href="css/style.css">
<script>
window.onload = () => {
App.init()
}
</script>
</head>
<body>
<div id="container">
<div id="words"></div>
</div>
<audio preload class="sound" id="atmo" src="audio/atmo.mp3"></audio>
<audio preload class="sound" id="pup" src="audio/pup.mp3"></audio>
</body>
</html>