diff --git a/README.md b/README.md
index b4b4ed3..73e0292 100644
--- a/README.md
+++ b/README.md
@@ -7,11 +7,18 @@
> If you would like to follow development progress, join [the discord](https://discord.gg/tZAfuWAbm2).
> For contributing to view.py, please see our [CONTRIBUTING.md](https://github.com/ZeroIntensity/view.py/blob/master/CONTRIBUTING.md)
+
+
- [Docs](https://view.zintensity.dev)
- [Source](https://github.com/ZeroIntensity/view.py)
- [PyPI](https://pypi.org/project/view.py)
- [Discord](https://discord.gg/tZAfuWAbm2)
+## Example
+
```py
from view import new_app, h1
@@ -24,23 +31,23 @@ async def index():
app.run()
```
-### Installation
+## Installation
**Python 3.8+ is required.**
-#### Development
+### Development
```
$ pip install git+https://github.com/ZeroIntensity/view.py
```
-#### Linux/macOS
+### Linux/macOS
```
$ python3 -m pip install -U view.py
```
-#### Windows
+### Windows
```
> py -3 -m pip install -U view.py
diff --git a/docs/index.md b/docs/index.md
index 6bc002a..e6c3633 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -1,4 +1,5 @@
+
# Welcome to the view.py documentation!
Here, you can learn how to use view.py and its various features.
@@ -13,6 +14,11 @@ Here, you can learn how to use view.py and its various features.
If you would like to follow development progress, join [the discord](https://discord.gg/tZAfuWAbm2).
For contributing to view.py, please see our [CONTRIBUTING.md](https://github.com/ZeroIntensity/view.py/blob/master/CONTRIBUTING.md)
+
+
## Quickstart
Install view.py: