From bf80433f42dd5283664fc8481d2685998fcf397f Mon Sep 17 00:00:00 2001 From: Brosef Date: Sat, 7 Feb 2026 19:25:23 +0000 Subject: [PATCH] Added boilerplate code --- index.html | 11 +++++++++++ main.js | 2 ++ styles.css | 5 +++++ 3 files changed, 18 insertions(+) create mode 100644 index.html create mode 100644 main.js create mode 100644 styles.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..b47947d --- /dev/null +++ b/index.html @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/main.js b/main.js new file mode 100644 index 0000000..7c5a15f --- /dev/null +++ b/main.js @@ -0,0 +1,2 @@ +window.addEventListener('load', (e) => { +}); \ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..150c232 --- /dev/null +++ b/styles.css @@ -0,0 +1,5 @@ +body { + background-color: #000000; + color: #FFFFFF; + font-family: sans-serif; +} \ No newline at end of file