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

# AddStyleTagOptions

Input options for the 'addStyleTag' mutation.

## Definition

```graphql theme={null}
input AddStyleTagOptions {
  content: String
  path: String
  url: URL
}
```

## Fields

### `content`

[String](/reference/graphql/scalars/string)

The inline CSS content of the style tag. Use this or 'url' or 'path'.
Example: `"body { font-size: 16px; }"`

### `path`

[String](/reference/graphql/scalars/string)

Path to a local CSS file to load. Not typically used in remote execution; prefer 'content' or 'url'.

### `url`

[URL](/reference/graphql/scalars/url)

The URL source for the style tag. Use this or 'content' or 'path'. Example: `"https://example.com/styles.css"`.
