What will happen if the following HTML code is used:
<h1> This is text</h1>
<h2> This is also text</h2>
and CSS is applied to change the font size like this:
.h1 {
font-size: 30px
}
.h2{
font-size: 30px
}
Will both texts be the same size or different due to the use of different headings? If they are different, by how many pixels will each text actually be?