> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kiwify.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# HTML tags

> HTML tags help you work with HTML in your Liquid templates.

HTML tags in Liquid provide ways to generate and manipulate HTML content dynamically.

## `style`

Allows for the inclusion of CSS directly in a template.

```liquid theme={null}
{% style %}
  css_content
{% endstyle %}
```

<ParamField path="css_content" type="string">
  The CSS content to include.
</ParamField>

<Columns cols={2}>
  <CodeGroup>
    ```liquid Code theme={null}
    {% style %}
      .highlighted {
        background-color: yellow;
        padding: 5px;
        font-weight: bold;
      }
    {% endstyle %}

    <span class="highlighted">This text is highlighted</span>
    ```
  </CodeGroup>

  <CodeGroup>
    ```liquid Output theme={null}
    <style>
      .highlighted {
        background-color: yellow;
        padding: 5px;
        font-weight: bold;
      }
    </style>

    <span class="highlighted">This text is highlighted</span>
    ```
  </CodeGroup>
</Columns>
