commit bb55c09413b787e08d6f16b69e29cb8082ad8ada Author: Yuuta Sakurai Date: Thu Oct 17 17:46:45 2024 +0900 initial commit diff --git a/index.html b/index.html new file mode 100644 index 0000000..2af5eed --- /dev/null +++ b/index.html @@ -0,0 +1,15 @@ + + + + + + + + + + +
+
+ + + diff --git a/sketch.js b/sketch.js new file mode 100644 index 0000000..9a7ab33 --- /dev/null +++ b/sketch.js @@ -0,0 +1,7 @@ +function setup() { + createCanvas(400, 400); +} + +function draw() { + background(128); +} diff --git a/style.css b/style.css new file mode 100644 index 0000000..9386f1c --- /dev/null +++ b/style.css @@ -0,0 +1,7 @@ +html, body { + margin: 0; + padding: 0; +} +canvas { + display: block; +}