Files
webawesome/docs/_includes/import-stylesheet-code.md.njk

19 lines
448 B
Plaintext
Raw Permalink Normal View History

<wa-tab-group class="import-stylesheet-code">
2025-01-16 16:31:24 -05:00
<wa-tab panel="html">In HTML</wa-tab>
<wa-tab panel="css">In CSS</wa-tab>
<wa-tab-panel name="html">
Add the following code to the `<head>` of your page:
2025-01-16 16:31:24 -05:00
```html
<link rel="stylesheet" href="{% cdnUrl stylesheet %}" />
```
</wa-tab-panel>
<wa-tab-panel name="css">
Add the following code at the top of your CSS file:
2025-01-16 16:31:24 -05:00
```css
@import url('{% cdnUrl stylesheet %}');
```
</wa-tab-panel>
</wa-tab-group>