- 2
Pls is h1 the biggest header or is there any other one
4 Answers
+ 9
h1 is the biggest header
https://www.sololearn.com/learn/HTML/1027/
+ 2
You can increase the size of h1.
h1 {
font-size: 3em;
/*or*/
font-size: 48px;
}
+ 1
Thanks alot
0
In terms of tags h1 is the biggest header.
But you can increase it by doing:
<h1 style="font-size: 100px;"></h1>