-
|
Hello. There was an issue #662 (Possibly to add link tags in ). It's closed as completed. But I can't find how to do it. Every bit of information I find is about |
Beta Was this translation helpful? Give feedback.
Answered by
masenf
Apr 19, 2024
Replies: 1 comment 1 reply
-
|
You can only do it for the whole app, but it looks something like this app = rx.App(
head_components=[
rx.el.link(
href="fancy.css",
rel="alternate stylesheet",
title="Fancy",
),
]
)You can also add meta tags via the same method with And it's not really supported, but you can also include raw inline styles via rx.el.element.Element.create("p {color: blue}", tag="style"), |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
regul8or
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can only do it for the whole app, but it looks something like this
You can also add meta tags via the same method with
rx.el.meta.And it's not really supported, but you can also include raw inline styles via