-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 751 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>chain_puzzle</title>
<link rel="stylesheet" type="text/css" href="css.css">
<link rel="icon" href="favicon.ico">
</head>
<body>
<div id="stage_select">
<input type="text" value="1" id="StageLink">
<button type="button" onclick="" id="startbutton">GAME START</button>
</div>
<div id="puz_display" style="display: none">
<p id="puz_info">Score : {{ score }},Hand : {{ hand }}</p>
<p id="target_info"></p>
<table class="board" id="puz_board"></table>
</div>
<script src="Script/scene-module.js" type="module" charset="UTF-8"></script>
</body>
</html>