From bb55c09413b787e08d6f16b69e29cb8082ad8ada Mon Sep 17 00:00:00 2001 From: Yuuta Sakurai Date: Thu, 17 Oct 2024 17:46:45 +0900 Subject: [PATCH] initial commit --- index.html | 15 +++++++++++++++ sketch.js | 7 +++++++ style.css | 7 +++++++ 3 files changed, 29 insertions(+) create mode 100644 index.html create mode 100644 sketch.js create mode 100644 style.css 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; +}