# Headings

The good people of HTML realized that sometimes  we might need our font sizes to be larger, or bold. So they created the header tags that have a pre-formatted size and boldness.

![Heading H1 -  H6 already exist in html](https://2507214486-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LpUPSf3tCxHePJxNjfg%2F-Ly9hrg62NjsNr7TGKyV%2F-Ly9nUM6lbGnaNuOD1E6%2Fimage.png?alt=media\&token=f0fc5d6d-cc1d-4425-8689-262f0105072b)

Add the following code segment to your web page&#x20;

```
<body>
So this is regular text

<h1> This the largest header </h1>

This is regular text

<h4> This is kind of the middle size header </h4>

This is  regular text

<h6> This is the smallest size header </h6>

This is regular text

</body>


```

Now  change the font color of the H4 header&#x20;
