mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 20:19:13 +00:00
19 lines
448 B
Plaintext
19 lines
448 B
Plaintext
<wa-tab-group class="import-stylesheet-code">
|
|
<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:
|
|
```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:
|
|
```css
|
|
@import url('{% cdnUrl stylesheet %}');
|
|
```
|
|
</wa-tab-panel>
|
|
</wa-tab-group>
|