Files
math/static/index.html
Dmitry Bikulov 93883a4470 Fix math
2025-09-15 19:38:36 +03:00

36 lines
1.1 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Тренажёр таблицы умножения</title>
<link rel="stylesheet" href="/static/style.css" />
</head>
<body>
<div class="app">
<h1 class="title">
Тренажёр таблицы умножения
</h1>
<p class="subtitle">Весёлая тренировка для 2 класса</p>
<div class="top-bar">
<div class="timer">⏱ Время: <span id="time">300</span> с</div>
<div class="progress">Вопрос: <span id="progress">0/20</span></div>
<button id="startBtn" class="start">Старт</button>
</div>
<div id="game" class="game hidden">
<div id="problem" class="problem">×</div>
<div id="options" class="options"></div>
</div>
<div id="status" class="status"></div>
<div id="result" class="result hidden"></div>
</div>
<div id="fxLayer" class="fx-layer"></div>
<script src="/static/app.js"></script>
</body>
</html>