diff --git a/icons/folder-closed.png b/icons/folder-closed.png
new file mode 100644
index 0000000..b27f8aa
Binary files /dev/null and b/icons/folder-closed.png differ
diff --git a/icons/folder-open.png b/icons/folder-open.png
new file mode 100644
index 0000000..36a1722
Binary files /dev/null and b/icons/folder-open.png differ
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..17d7ae7
--- /dev/null
+++ b/index.html
@@ -0,0 +1,52 @@
+
+
+
+
+
+ Eaglercraft Archive
+
+
+
+ Eaglercraft Archive
+ Archive Versions
+
+
+

+
Eaglercraft 1.8
+
+
+
+
+

+
Eaglercraft b1.3
+
+
+
+
+

+
Eaglercraft 1.5
+
+
+
+
+
+
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..f3fd808
--- /dev/null
+++ b/style.css
@@ -0,0 +1,40 @@
+body {
+ font-family: Arial, sans-serif;
+ margin: 20px;
+}
+
+.folder {
+ cursor: pointer;
+ display: flex;
+ align-items: center;
+ margin-bottom: 5px;
+}
+
+.folder img {
+ width: 20px;
+ margin-right: 10px;
+}
+
+.folder-items {
+ display: none;
+ margin-left: 30px;
+ max-height: 0;
+ overflow: hidden;
+ transition: max-height 0.3s ease-out;
+}
+
+.folder-items.open {
+ display: block;
+ max-height: 500px;
+}
+
+.folder-items a {
+ text-decoration: none;
+ color: blue;
+ margin-bottom: 5px;
+ display: inline-block;
+}
+
+.folder-items a:hover {
+ text-decoration: underline;
+}