how to change h1 font style in html code example
Example 1: change font size of h1 in html
<style>
h1 {
font-size: 100px;
}
</style>
Example 2: how to change font in html
<font face="yourfont">
Lorem Ipsum
</font>
<style>
h1 {
font-size: 100px;
}
</style>
<font face="yourfont">
Lorem Ipsum
</font>