Is it valid to have paragraph elements inside of a heading tag in HTML5 (P inside H1)?
Actually, no. This markup is not correct according to W3C. You should avoid using this. It is stated that the correct content for header elements is a “phrasing content“, which is phrasing elements intermixed with normal character data. In other words you can use the following convenient elements inside of a header tag in HTML5: … Read more