From b3c9e0f924ae0133c4a936846b10935128c28f9f Mon Sep 17 00:00:00 2001 From: Stefan Kreutz Date: Thu, 28 Apr 2022 09:37:50 +0200 Subject: Add existing skeleton --- index.css | 9 +++++++++ index.html | 19 +++++++++++++++++++ index.js | 3 +++ 3 files changed, 31 insertions(+) create mode 100644 index.css create mode 100644 index.html create mode 100644 index.js diff --git a/index.css b/index.css new file mode 100644 index 0000000..da880ba --- /dev/null +++ b/index.css @@ -0,0 +1,9 @@ +:root { + --foreground-color: rgba(0, 0, 0, .8); + --background-color: rgb(255, 255, 255); +} + +body { + color: var(--foreground-color); + background-color: var(--background-color); +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..bf1d2ce --- /dev/null +++ b/index.html @@ -0,0 +1,19 @@ + + + + + + + + + HTML5 Skeleton + + + + + +

HTML5 Skeleton

+

Hello, world!

+ + + diff --git a/index.js b/index.js new file mode 100644 index 0000000..b538389 --- /dev/null +++ b/index.js @@ -0,0 +1,3 @@ +(function () { + window.addEventListener("load", function() { alert("Hello"); }, false); +})(); -- cgit v1.2.3