default size of h1 tag code example
Example 1: how to do h1 tag
<h1> Sample Text </h1>
Example 2: change font size of h1 in html
<style>
h1 {
font-size: 100px;
}
</style>
<h1> Sample Text </h1>
<style>
h1 {
font-size: 100px;
}
</style>