Spaces:
Running
Running
File size: 736 Bytes
1cc36dd 89cd266 1cc36dd 89cd266 1cc36dd 6f32443 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gamme inducer</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #000;
}
canvas {
display: block;
}
</style>
</head>
<body>
<!-- Include p5.js library from CDN -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.2/p5.min.js"></script>
<!-- Include your simulation script -->
<script src="stim2.js"></script>
</body>
</html>
|