-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
20 lines (20 loc) · 927 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="An interactive particle simulation that combines elements of artificial life, particle systems, and magical abilities.">
<meta name="keywords" content="particle simulation, artificial life, particle systems, magical abilities, interactive">
<meta name="author" content="scar17off">
<title>Enhanced Particle Life Simulation</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<canvas id="simulationCanvas" style="position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;"></canvas>
<script src="js/config.js"></script>
<script src="js/particle.js"></script>
<script src="js/effects.js"></script>
<script src="js/simulation.js"></script>
<script src="js/main.js"></script>
</body>
</html>