-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (66 loc) · 2 KB
/
index.html
File metadata and controls
77 lines (66 loc) · 2 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<html>
<head>
<meta charset="UTF-8" />
<title>Hunger Games</title>
<!-- Bootstrap -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
/>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<!-- Arquivos do fremeworl P5.js -->
<script
language="javascript"
type="text/javascript"
src="libraries/p5.js"
></script>
<script
language="javascript"
type="text/javascript"
src="libraries/p5.dom.js"
></script>
<!-- Arquivos desenvolvidos -->
<script
language="javascript"
type="text/javascript"
src="Specimen.js"
></script>
<script
language="javascript"
type="text/javascript"
src="Population.js"
></script>
<script
language="javascript"
type="text/javascript"
src="main.js"
></script>
</head>
<style>
body {
background-color: #ebe3e3;
}
.center {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.centerX {
margin-top: 12px;
margin-left: 400px;
}
</style>
<body>
<div class="container">
<div id="title" class="centerX">
<h1>Hunger Games</h1>
</div>
<div id="canvasDiv" class="center"></div>
<div class="centerX">
</div>
</div>
</body>
</html>