-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 757 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>With single neuron!</title>
<script src="lib/p5.min.js"></script>
<script src="data/constants.js"></script>
<script src="data/coordinatePlane.js"></script>
<script src="data/dot.js"></script>
<script src="data/perceptron.js"></script>
<script src="data/separator.js"></script>
<script src="data/sketch.js"></script>
<style>
canvas{
position: absolute;
display: block;
box-shadow: #000 0px 0px 25px;
}
</style>
</head>
<body style="padding: 0; margin: 0; overflow: hidden; background-color: #092020;">
</body>
</html>