Initial commit
This commit is contained in:
32
static/index.html
Normal file
32
static/index.html
Normal file
@@ -0,0 +1,32 @@
|
||||
<!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>Тренажёр таблицы умножения</h1>
|
||||
<div class="top-bar">
|
||||
<div class="timer">Время: <span id="time">60</span> с</div>
|
||||
<div class="progress">Вопрос: <span id="progress">0/20</span></div>
|
||||
<button id="startBtn" class="start">Старт</button>
|
||||
</div>
|
||||
|
||||
<div id="status" class="status"></div>
|
||||
|
||||
<div id="game" class="game hidden">
|
||||
<div id="problem" class="problem">— × —</div>
|
||||
<div id="options" class="options"></div>
|
||||
</div>
|
||||
|
||||
<div id="result" class="result hidden"></div>
|
||||
</div>
|
||||
|
||||
<div id="fxLayer" class="fx-layer"></div>
|
||||
|
||||
<script src="/static/app.js"></script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user