-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 786 Bytes
/
Copy pathindex.html
File metadata and controls
21 lines (21 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Color Gradient Field</title>
<link rel="stylesheet" href="styles.css">
<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js"></script>
</head>
<body>
<div id="container"></div>
<div id="gradient-controls"></div>
<script src="scripts/utils/lodash.js" defer></script>
<script src="scripts/functions.js" defer></script>
<script src="scripts/grid.js" defer></script>
<script src="scripts/gradient.js" defer></script>
<script src="scripts/oneCellOrganism/app.js" defer></script>
<script src="scripts/oneCellOrganism/memory.js" defer></script>
<script src="scripts/app.js" defer></script>
</body>
</html>