One of the core components of Dash is HTML components, which allow you to embed standard HTML elements in your application.
This article will provide a detailed introduction to commonly used HTML components in Dash.
## 1. Importing HTML Components
In the latest version of Dash, the way to import HTML components has changed. We can directly import the `html` component from the `dash` module, without having to import it from `dash_html_components` as before.
from dash import html
### Common HTML Components
| **Component** | **Description** | **Example Code** |
| --- | --- | --- |
| **`html.Div`** | Creates a container (`
`) to wrap other components | `html.Div(children=[html.H1("Title"), html.P("This is a paragraph.")])` |
| **`html.H1`** | Creates a level 1 heading (`