]> localhost Git - neocities.git/commitdiff
Setup git LFS, add initial files
authormisomosi <[email protected]>
Thu, 18 Dec 2025 18:46:49 +0000 (13:46 -0500)
committermisomosi <[email protected]>
Wed, 10 Jun 2026 14:38:00 +0000 (10:38 -0400)
.gitattributes
favicon.png [new file with mode: 0644]
index.html [new file with mode: 0644]
styles.css [new file with mode: 0644]

index fdba98b7df04ea79e639e8474d86c5cd29883d49..1691f22a315762e154b4e48ff0b620d47d2e4003 100644 (file)
@@ -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 (file)
index 0000000..9759039
--- /dev/null
@@ -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 (file)
index 0000000..c88b19a
--- /dev/null
@@ -0,0 +1,20 @@
+
+<!DOCTYPE html>
+<html>
+  <head>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>MisoCities</title>
+    <!-- The style.css file allows you to change the look of your web pages.
+         If you include the next line in all your web pages, they will all share the same look.
+         This makes it easier to make new pages for your site. -->
+    <link href="style.css" rel="stylesheet" type="text/css" media="all">
+    <link href="favicon.png" rel="icon" type="image/png" />
+  </head>
+  <body>
+    <h1>Miso's Neocities Page!</h1>
+    <p>
+    Herein lies my personal Neocities page, I guess... Have fun!
+    </p>  
+  </body>
+</html>
diff --git a/styles.css b/styles.css
new file mode 100644 (file)
index 0000000..f87439d
--- /dev/null
@@ -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;
+}\r