-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (22 loc) · 865 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (22 loc) · 865 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello 2023!</title>
<link rel="stylesheet" type="text/css" href="./css/main.css">
<script language=javascript src="./script/main.js"></script>
<script language=javascript src="./script/gen.js"></script>
<script>generate(0);</script>
</head>
<body>
<div class="main">
<div id="display-area" class="display-area">Loading...</div>
<div id="button-area" class="button-area">
<button id="regenerate" onclick="generate(1)" class="button">重新生成</button>
<button id="export" onclick="copy()" class="button">导出记录</button>
</div>
<div id="history" class="history">历史记录:(暂无)</div>
<textarea id="copy" class="copy" readonly>历史记录:(暂无)</textarea>
</div>
</body>
</html>