-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (22 loc) · 698 Bytes
/
index.html
File metadata and controls
25 lines (22 loc) · 698 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
25
<!-- ...existing code... -->
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scrollable Image</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.9.0/p5.min.js"></script>
<link rel="stylesheet" href="./home/style.css">
</head>
<body>
<header>
</header>
<div id="canvas-container" class="butterflies-container">
<!-- p5.js creará el canvas aquí -->
</div>
<script src="./home/linea.js"></script>
<script src="./home/mariposa.js"></script>
<script src="./home/sketch.js"></script>
</body>
</html>
<!-- ...existing code... -->