-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html.o
29 lines (26 loc) · 1.12 KB
/
index.html.o
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>puzzle 15 ml</title>
<link rel="stylesheet" href="/public/style.css">
<link rel="stylesheet" href="/public/prism.css" />
</head>
<body>
<main id="app">
<div>--------------------------------------------------------------------------------------------------</div>
<div id=tools>
<input id="startTrainingBtn" type="button" value="train">
<input id="startTestingBtn" type="button" value="test">
<input id="zenGardenBtn" type="button" value="zen garden off">
<input id="configurationBtn" type="button" value="configuration off">
<input id="aboutBtn" type="button" value="about off">
<div id="statsInfo" class="console-text"></div>
</div>
<div>--------------------------------------------------------------------------------------------------</div>
<div id="console" class="console"></div>
</main>
<script type="module" src="/src/main.ts"></script>
</body>
</html>