-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (26 loc) · 1.06 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
<html>
<head>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<script type="text/template" id="tpl-casa">
<div class="casa" data-marcado="false" data-linha="LINHA" data-coluna="COLUNA"> </div>
</script>
<script src="debug.js" type="text/javascript"></script>
<script src="index.js" type="text/javascript"></script>
</head>
<body>
<div id="tabuleiro">
</div>
<div id="jogador-atual">
Vez de
</div>
<footer style="float: right;">
<div class="assinatura">
<i class="fa fa-code" style="color: aquamarine"></i> with <i class="fa fa-heart" style="color: red"></i> by
<a href="http://pt.stackoverflow.com/u/18246" target="_blank">
<img src="https://i.stack.imgur.com/yA3Te.png?s=32&g=1" class="foto"/>
</a>
</div>
</footer>
</body>
</html>