diff --git a/README.md b/README.md
index 0b86610..0ec748e 100644
--- a/README.md
+++ b/README.md
@@ -7,6 +7,7 @@ This project is an implementation of a simple HTML RSS feed reader and aggregato
Clone the project.
1. On the web server, create a working directory called 'fetchrss'. Add the following files to it:
+
```
feed-loader.js
rss_agg.py
@@ -14,17 +15,20 @@ rss.sh
```
2. Make `rss_agg.py` and `rss.sh` executable:
+
```bash
chmod 750 rss_agg.py rss.sh
```
3. Call `feed-loader.js` from the HTML page where the RSS feeds will be displayed:
+
```
<div id="rss-feed-box"></div>
<script src="/fetchrss/feed-loader.js"></script>
```
4. Add CRON jobs to run `rss_agg.py` and `rss.sh` on a schedule:
+
```
0 */6 * * * cd /path/to/fetchrss && bash rss.sh >/dev/null 2>&1
3 */6 * * * cd /path/to/fetchrss && python3 rss_agg.py >/dev/null 2>&1