-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
62 lines (54 loc) · 1.29 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<title>Bisca</title>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/sprite_baralho.js"></script>
<script type="text/javascript" src="js/funcoesAfins.js"></script>
<script type="text/javascript" src="js/deixaContecer.js"></script>
<script type="text/javascript" src="js/jogadasComputer.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<style type="text/css">
body{
background-color: #AAA;
}
canvas{
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
margin: auto;
}
footer{
font-size: 20px;
background-color: gray;
padding: 10px;
position: absolute;
min-height: 80px;
min-width: 800px;
}
.meio{
text-align: center;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
margin: auto;
}
.hover:hover{
color: #FFF;
}
</style>
</head>
<body>
</body>
<footer id="foot" class="meio">
<div>
<div class="hover">Criador: João Vitor Natali</div>
<div>Artes gráficas: Thayssa Monfreides</div>
<div><a style="font-size: 19px; color: #000" href="https://br.freepik.com/fotos-vetores-gratis/textura">Textura vetor criado por macrovector - br.freepik.com</a></div>
</div>
</footer>
</html>