> ## 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.

# Tags HTML

> Tags HTML ajudam você a trabalhar com HTML nos seus templates Liquid.

Tags HTML no Liquid fornecem maneiras de gerar e manipular conteúdo HTML dinamicamente.

## `style`

Permite a inclusão de CSS diretamente em um template.

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

<ParamField path="css_content" type="string">
  O conteúdo CSS a ser incluído.
</ParamField>

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

    <span class="highlighted">Este texto está destacado</span>
    ```
  </CodeGroup>

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

    <span class="highlighted">Este texto está destacado</span>
    ```
  </CodeGroup>
</Columns>
