Files
Youtube_Math/www/index.html
2026-05-04 15:32:19 -04:00

42 lines
1.0 KiB
HTML

<!-- Copyright John Salguero All rights Reserved -->
<!DOCTYPE html>
<html>
<head>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="style/styles.css">
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
</head>
<body>
<canvas id="waveCanvas"></canvas>
<canvas id="particleCanvas"></canvas>
<div id="timer">
<svg width="60" height="60">
<circle
id="timer-bg"
cx="30"
cy="30"
r="25"
/>
<circle
id="timer-progress"
cx="30"
cy="30"
r="25"
/>
</svg>
<div id="timer-text"></div>
</div>
<div id="problem"></div>
<div id="equation-main"></div>
<div id="equation-next"></div>
<div id="explanation"></div>
<script src="scripts/timer.js"></script>
<script src="scripts/background.js"></script>
<script src="scripts/problem.js"></script>
<script src="scripts/web_sockets.js"></script>
</body>
</html>