From fb0cecae217e4cf3edd6d30440b1cd2e8ca33196 Mon Sep 17 00:00:00 2001 From: misomosi Date: Thu, 18 Dec 2025 13:46:49 -0500 Subject: [PATCH] Setup git LFS, add initial files --- .gitattributes | 3 ++- favicon.png | 3 +++ index.html | 20 ++++++++++++++++++++ styles.css | 9 +++++++++ 4 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 favicon.png create mode 100644 index.html create mode 100644 styles.css diff --git a/.gitattributes b/.gitattributes index fdba98b..1691f22 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,2 @@ -*.png[[:space:]]*.jpg filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.jpg filter=lfs diff=lfs merge=lfs -text diff --git a/favicon.png b/favicon.png new file mode 100644 index 0000000..9759039 --- /dev/null +++ b/favicon.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8fed06d44e0fbed94a15fe4418ddc6180c54cd03767dbbcb5e4f4c1408923571 +size 17329 diff --git a/index.html b/index.html new file mode 100644 index 0000000..c88b19a --- /dev/null +++ b/index.html @@ -0,0 +1,20 @@ + + + + + + + MisoCities + + + + + +

Miso's Neocities Page!

+

+ Herein lies my personal Neocities page, I guess... Have fun! +

+ + diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..f87439d --- /dev/null +++ b/styles.css @@ -0,0 +1,9 @@ +/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your + HTML content. To learn how to do something, just try searching Google for questions like + "how to change link color." */ + +body { + background-color: white; + color: black; + font-family: Verdana; +} -- 2.49.1