# Inline Trustmarks

We offer several inline trustmarks that can be placed anywhere on your website. To install these, log into your account and visit the Trustmarks section.

From there, select the trustmark you'd like to add. You can easily customize the size. Then copy the provided code and paste it into your website code where you'd like the trustmark to display.

{% hint style="info" %}
Inline trustmarks require a Pro plan and the main code to be installed on any page you'd like to display the trustmarks.
{% endhint %}

### Trustmark Code Example

Here an example of the trustmark code for the Certified Secure engagement trustmark.

```html
<div class="trustedsite-trustmark" data-type="202" data-width="120"  data-height="50"></div>
```

It includes:

* The `class` of `trustedsite-trustmark` which is used for all inline trustmarks.
* `data-type` specifies the type of trustmark to display
* `data-width` determines the width of the trustmark
* `data-height` determines the height of the trustmark

These values can be easily generated in the TrustedSite dashboard.

### Customizations

You can easily customize the trustmark positioning or other elements using CSS. We recommend adding an additional wrapping `div` around the generated trustmark code and applying styles to that.

```html
<div id="myTrustmark"><div class="trustedsite-trustmark" data-type="202"></div></div>
```

```css
#myTrustmark {
    margin-bottom:20px;
}
```

#### Looking for HTML-only trustmarks?

We currently only offer HTML-only trustmarks to customers with an enterprise plan. [Get in touch](https://www.trustedsite.com/contact) to learn more.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.trustedsite.com/docs/installation/inline-trustmarks.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
