exercises/w12_node/save-dots/client/index.html
2025-05-13 22:17:33 +09:00

25 lines
546 B
HTML

<!DOCTYPE html>
<html>
<head>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.11.3/p5.min.js"
integrity="sha512-I0Pwwz3PPNQkWes+rcSoQqikKFfRmTfGQrcNzZbm8ALaUyJuFdyRinl805shE8xT6iEWsWgvRxdXb3yhQNXKoA=="
crossorigin="anonymous"
></script>
<script src="https://cdn.socket.io/3.1.3/socket.io.min.js"></script>
<script src="sketch.js"></script>
<meta charset="utf-8" />
<style>
body {
margin: 0;
overflow: hidden;
}
</style>
</head>
<body></body>
</html>