--- sidebar_label: Frame.addStyleTag --- # Frame.addStyleTag() method Adds a `<link rel="stylesheet">` tag into the page with the desired URL or a `<style type="text/css">` tag with the content. #### Signature: ```typescript class Frame { addStyleTag( options: Omit<FrameAddStyleTagOptions, 'url'> ): Promise<ElementHandle<HTMLStyleElement>>; } ``` ## Parameters | Parameter | Type | Description | | --------- | ------------------------------------------------------------------------------------ | ----------- | | options | Omit<[FrameAddStyleTagOptions](./puppeteer.frameaddstyletagoptions.md), 'url'> | | **Returns:** Promise<[ElementHandle](./puppeteer.elementhandle.md)<HTMLStyleElement>> An [element handle](./puppeteer.elementhandle.md) to the loaded `<link>` or `<style>` element.