Is either:
<a href="#"><h1>text here</h1></a>
or
<h1><a href="#">text here</a></h1>
"correct". Is there any benefit of using the first one, it seems more logical to me. Perhaps from an SEO point?
|
|
Is either:
or
"correct". Is there any benefit of using the first one, it seems more logical to me. Perhaps from an SEO point?
|
||
|
|
|
|
is correct, as HTML does not allow a block element (
|
|||
|
|
|
|
Your second example is the only allowed structure. The first puts a block-level element inside an inline element and HTML does not allow this. Browsers may allow it, but it is not valid HTML. |
||
|
|
|
|
There ain't really much difference in this particular case. There are some things to point out though:
So this is basically a logical difference without any practical differences in this particular case. |
||
|
|
|
|
Additional note, although the former case works, its purely due to browsers being permissive. You may find via inspecting the internal dom tree that
gets broken into
And this can create interesting results. ;) |
||
|
|