@rhds/elements
Version:
Red Hat Design System Elements
24 lines (19 loc) • 367 B
Markdown
# Call to action
A Call to action is a styled link that directs a user to other pages or sometimes displays hidden content.
## Usage
As a link
```html
<rh-cta href="/subscribe">Subscribe</rh-cta>
```
As a button
```html
<rh-cta>
<button>Watch live</button>
</rh-cta>
```
With a slotted anchor
```html
<rh-cta>
<a href="/subscribe">Subscribe</a>
</rh-cta>
```