> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://help.unicornplatform.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# How to add estimated reading time to blog posts

This guide will show you how to add the estimated reading time of your blog posts.

![](https://storage.crisp.chat/users/helpdesk/website/7e782a40c0560c00/monosnap-how-ai-is-revolutioni_zue09r.png)

# Step 1

Add a Raw HTML section at the end of your blog post. To do this, open the toolbar by pressing tab button and select **Raw HTML**.


![](https://storage.crisp.chat/users/helpdesk/website/7e782a40c0560c00/monosnap-unicorn-platform-buil_fn209z.png)
# Step 2

Copy this code:

```javascript
<script>
const text = "7 min read"
const dateModified = document.querySelector('.date-modified');
dateModified.textContent = dateModified.textContent + ` • ${text}`
</script>
```

# Step 3

Paste the copied code in the Raw HTML sections.


![](https://storage.crisp.chat/users/helpdesk/website/7e782a40c0560c00/monosnap-unicorn-platform-buil_b2jl22.png)

# Step 4

Here you can indicate the intended estimated reading time for the blog post.


![](https://storage.crisp.chat/users/helpdesk/website/7e782a40c0560c00/monosnap-unicorn-platform-buil_1oe5own.png)

You can use the service https://tipseason.com/reading-time-calculator to calculate the estimated reading time of your post.

### Done!

Your blog post now has an estimated reading time.
