-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (33 loc) · 1.03 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
<!DOCTYPE html>
<!--CUIDADO! gambiarra a seguir-->
<html>
<head>
<title>Canvas Web</title>
<meta charset="UTF8" />
<link rel="stylesheet" href="Styles/masterStyle.css">
</link>
</head>
<body>
<div class="requirements">
<div class="item">
<div class="checkbox" style="background: white;" id="Autômato celular" onclick="updateList(this)"></div>
<label>Autômato celular</label>
</div>
<div class="item">
<div class="checkbox" style="background: white;" id="Fractal" onclick="updateList(this)"></div>
<label>Fractal</label>
</div>
<div class="item">
<div class="checkbox" style="background: white;" id="Jogo" onclick="updateList(this)"></div>
<label>Jogo</label>
</div>
<div class="item">
<div class="checkbox" style="background: white;" id="Plano de fundo" onclick="updateList(this)"></div>
<label>Plano de fundo</label>
</div>
</div>
<div id="container">
</div>
<script src="vulpesPOG.js"></script>
</body>
</html>