---
components:
- rx.html
---
```python exec
import reflex as rx
from pcweb.pages.docs import styling
```
# HTML
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.
```python demo
rx.vstack(
rx.html("
Hello World
"),
rx.html("Hello World
"),
rx.html("Hello World
"),
rx.html("Hello World
"),
rx.html("Hello World
"),
rx.html("Hello World
"),
)
```
```md alert
# Missing Styles?
Reflex uses Chakra-UI and tailwind for styling, both of which reset default styles for headings.
If you are using the html component and want pretty default styles, consider setting `class_name='prose'`, adding `@tailwindcss/typography` package to `frontend_packages` and enabling it via `tailwind` config in `rxconfig.py`. See the [Tailwind docs]({styling.overview.path}) for an example of adding this plugin.
```
In this example, we render an image.
```python demo
rx.html("
")
```