jeopardy/index.html
2023-04-16 00:40:43 -05:00

32 lines
917 B
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="./media/favicon.png" media="(prefers-color-scheme: no-preference)" type="image/png">
<link rel="icon" href="./media/favicon-dark.png" media="(prefers-color-scheme: dark)" type="image/png">
<link rel="icon" href="./media/favicon.png" media="(prefers-color-scheme: light)" type="image/png">
<script src="keybinds.js"></script>
<script src="cookie.js"></script>
</head>
<audio id="audio">
<source src="media/Jeopardy-theme-song.mp3" type="audio/mpeg">
</audio>
<body>
<div id="file">
<input type="file">
<h1>Upload Jeopardy Game File<br>For Formatting Help, press 'H'</h1>
</div>
<table id="game">
<tr id="categories"></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
<tr></tr>
</table>
<div id="scores">
</div>
</body>
<script src="game.js"></script>
</html>