> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://docs.clientexec.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).

# Crisp Asset HTML

Add the following HTML to the product description to show assets (Disk Space, Bandwidth, Databases, etc):

```html
<div class="items">
    <div class="icon">
        <i class="fa fa-server"></i>
    </div>
    <span>Disk Space:</span>
    <h5>25 GB</h5>
</div>
<div class="items">
    <div class="icon">
        <i class="fas fa-tachometer-alt"></i>
    </div>
    <span>Bandwidth</span>
    <h5>Unlimited</h5>
</div>
<div class="items">
    <div class="icon">
        <i class="fas fa-database"></i>
    </div>
    <span>MySQL Databases: </span>
    <h5>Unlimited</h5>
</div>
<div class="items">
    <div class="icon">
        <i class="fas fa-envelope-open-text"></i>
    </div>
    <span>Email Accounts:</span>
    <h5>Unlimited</h5>
</div>
```