diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..55b4959
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,7 @@
+Copyright 2020 Jordan Scales
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..50ceea8
--- /dev/null
+++ b/README.md
@@ -0,0 +1,23 @@
+## 98.css
+
+A design system for building faithful recreations of old UIs.
+
+
+
+### Installation
+
+You can grab 98.css from npm.
+
+```
+npm install 98.css
+```
+
+Then reference [`build/98.css`](https://github.com/jdan/98.css/blob/master/build/98.css) however you see fit. Refer to the [documentation page](https://jdan.github.io/98.css/) for specific instructions on this library's components.
+
+### Issues, Contributing, etc.
+
+98.css is [MIT licensed](https://github.com/jdan/98.css/blob/master/LICENSE).
+
+Refer to [the Github issues page](https://github.com/jdan/98.css/issues) to see bugs in my CSS or report new ones. I'd really like to see your pull requests (especially those new to open-source!) and will happily provide code review. 98.css is a fun, silly project and I'd like to make it a fun place to build your open-source muscle.
+
+Thank you for checking my little project out, I hope it brought you some joy today. Consider [starring/following along on Github](https://github.com/jdan/98.css/stargazers) and maybe subscribing to more fun things on [my twitter](https://twitter.com/jdan). 👋
diff --git a/build/98.css b/build/98.css
index 7b8efd7..0e5a2b4 100644
--- a/build/98.css
+++ b/build/98.css
@@ -1,3 +1,9 @@
+/**
+ * 98.css
+ * Copyright (c) 2020 Jordan Scales
You can install 98.css from the GitHub releases page, or from npm.
-npm install 98.css
+ + You can install 98.css from the GitHub releases page, or from npm. +
+npm install 98.css
+ To render a tree view, use an ul element with the
+ tree-view class. The children of this list (li
+ elements), can contain whatever you'd like.
+
<ul class="tree-view">
+ <li>We can put</li>
+ <li><strong style="color: purple">✨ Whatever ✨</strong></li>
+ <li>We want in here</li>
+</ul>
+
+ To make this a tree, we can nest further ul elements
+ (no class needed on these). This will provide them with a nice dotted
+ border and indentation to illustrate the structure of the tree.
+
<ul class="tree-view">
+ <li>Table of Contents</li>
+ <li>What is web development?</li>
+ <li>
+ CSS
+ <ul>
+ <li>Selectors</li>
+ <li>Specificity</li>
+ <li>Properties</li>
+ </ul>
+ </li>
+ <li>
+ JavaScript
+ <ul>
+ <li>Avoid at all costs</li>
+ </ul>
+ </li>
+ <li>HTML</li>
+ <li>Special Thanks</li>
+</ul>
+ + 98.css is MIT licensed. +
+ ++ Refer to the Github issues page to see bugs + in my CSS or report new ones. I'd really like to see your pull requests (especially those new to + open-source!) and will happily provide code review. 98.css is a fun, silly project and I'd like + to make it a fun place to build your open-source muscle. +
+ ++ Thank you for checking my little project out, I hope it brought you some joy today. Consider + starring/following along on Github and maybe + subscribing to more fun things on my twitter. 👋 +