-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (26 loc) · 878 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" type="text/css" href="css/sudoku.css">
</head>
<body>
<div class="mainWrapper">
<div id="option" class="option">
</div>
<div class="btnClass">
<div id="startAgain" class="funcBtn btn_normal btn_dark_green btn_font">再来一把</div>
<div id="remind" class="funcBtn btn_normal btn_dark_green btn_font">提示</div>
</div>
<div id="sudokuWrapper">
</div>
<div id="testModal" class="showModal" style="display:none">
</div>
</div>
<script type="application/javascript" src="js/lang.js"></script>
<script type="application/javascript" src="external/jquery-2.1.4.js" ></script>
<script type="application/javascript" src="js/m/m.js"></script>
<script type="application/javascript" src="js/view/sudoku.js"></script>
</body>
</html>