# loadCSSFromURLAsync

**Kind:** Function

Injects CSS from a remote URL.

Returns a promise that resolves to the HTML style element inserted into the page.

```js
import {loadCSSFromURLAsync} from '@airtable/blocks/interface/ui';
loadCSSFromURLAsync('https://example.com/style.css');
```

**Parameters:**
- `url` (`string`) — The URL of the stylesheet.

**Returns:** `Promise<HTMLLinkElement>`
