-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
34 lines (29 loc) · 974 Bytes
/
index.html
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
30
31
32
33
34
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jxg editor</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="supported-color-schemes" content="light dark">
<meta name="theme-color" content="#ffffff" />
<link rel="icon" href="./logo/logo.svg" type="image/x-icon">
<link rel="apple-touch-icon" href="./logo/logo.svg">
<link rel="stylesheet" href="css/css.css">
</head>
<body>
<div id="main">
<div id="nav">
</div>
<div id="画布">
<div id="board"></div>
</div>
<div id="run">
<div id="code"></div>
<div id="math"><math-field></math-field><button id="add_math"></button><button id="add_function"></button>
</div>
</div>
</div>
<div id="toast"></div>
</body>
<script type="module" src="./src/js/js.ts"></script>
</html>