# Vue Heading - Flowbite
#### The heading component defines six levels of title elements from H1 to H6 that are used as titles and subtitles on a web page based on multiple styles and layouts
## Heading one (H1)
Use the `tag="h1"` as the most important text element to indicate the title of your web page.
```vue
Heading 1
```
## Heading two (H2)
The H2 tag can be used as subtitles of the page’s sections.
```vue
Heading 2
```
## Heading three (H3)
Use the H3 tags inside sections that already have a H2 available.
```vue
Heading 3
```
## Heading four (H4)
The H4 can be generally used after H2 and H3 tags are already present and you need a more in-depth hierarchy.
```vue
Heading 4
```
## Heading five (H5)
The H5 tag is most often used in longer articles with other heading already available or in sidebars.
```vue
Heading 5
```
## Heading six (H6)
Using the H6 tag is quite rare because it means that you’ve already used all heading from H1 to H5, but you can still use it if you have a very complex article with lots of headings.
```vue
Heading 6
```
## Color
Use the `color` prop to set the text color.
```vue
Green eading
```
## Custom classes
Use the `class` attribute to apply the tailwind classes.
```vue
Custom heading
```