-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (32 loc) · 1.12 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Beautiful go game goban">
<meta name="keywords" content="Go,Weiqi,Baduk,Paduk,iGo,碁,围棋,바둑,kyu,dan,goban,Го,гобан">
<meta name="author" content="Andrei Iatsuk">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dashingo</title>
<link rel="stylesheet" href="css/goban.css">
</head>
<body>
<div class="container">
<div class="top-bowl-area">
<div class="bowl-cap" style="transform: translate(0, -50%);"></div>
<div class="bowl-black"></div>
</div>
<div class="board-area board">
<div id="grid" class="grid"></div>
</div>
<div class="bottom-bowl-area">
<div class="bowl-white"></div>
<div class="bowl-cap"></div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script src="js/jquery.ui.touch-punch.min.js"></script>
<script src="js/board.js"></script>
<script src="js/bowl.js"></script>
</body>
</html>