HTML Embed

The HTML component can be used to render raw HTML code.

Before you reach for this component, consider using Reflex's raw HTML element support instead.

Hello World

Hello World

Hello World

Hello World

Hello World
Hello World
rx.vstack(
    rx.html("<h1>Hello World</h1>"),
    rx.html("<h2>Hello World</h2>"),
    rx.html("<h3>Hello World</h3>"),
    rx.html("<h4>Hello World</h4>"),
    rx.html("<h5>Hello World</h5>"),
    rx.html("<h6>Hello World</h6>"),
)

In this example, we render an image.

rx.html(
    "<img src='https://reflex.dev/reflex_banner.png' />"
)

API Reference

rx.html

Render the html.

Returns:
    The code to render the html component.
PropType | ValuesDefault
dangerouslySetInnerHTML
Dict[str, str]

Event Triggers

See the full list of default event triggers