Answers for "change font size of h1 in html"

10

h1 default font-size

Default font-size

h1 ---> 32px   (2em)
h2 ---> 24px (1.5em)
h3 ---> 20.8px (1.3em)
h4 ---> 16px   (1em)
h5 ---> 12.8px (0.8em)
h6 ---> 11.2px (0.7em)
Posted by: Guest on May-31-2021
20

html font size

<span style="font-size:20px;"></span>
Posted by: Guest on May-19-2020
5

how to increase font size in html

font-size: 25px;
Posted by: Guest on November-20-2019
1

change font size of h1 in html

<style>
h1 { 
	font-size: 100px;
   }
</style>
Posted by: Guest on February-12-2021

Browse Popular Code Answers by Language