-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.5 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
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="src/css/reset.css">
<link rel="stylesheet" href="src/css/global.css">
<link rel="stylesheet" href="src/css/tabuleiro.css">
<link rel="stylesheet" href="src/css/pecas.css">
<link rel="stylesheet" href="src/css/responsivo.css">
<title>Jogo da velha</title>
</head>
<body>
<section class="container">
<div class="content">
<div id="left"></div>
<div id="board">
<div class="dropzone one" data-col="0" data-row="0"></div>
<div class="dropzone two" data-col="1" data-row="0"></div>
<div class="dropzone tree" data-col="2" data-row="0"></div>
<div class="dropzone four" data-col="0" data-row="1"></div>
<div class="dropzone five" data-col="1" data-row="1"></div>
<div class="dropzone six" data-col="2" data-row="1"></div>
<div class="dropzone seven" data-col="0" data-row="2"></div>
<div class="dropzone eight" data-col="1" data-row="2"></div>
<div class="dropzone nine" data-col="2" data-row="2"></div>
</div>
<div id="right"></div>
</div>
</section>
<script src="/src/js/script-pecas.js"></script>
<script src="/src/js/script-front.js"></script>
</body>
</html>