Is it valid HTML to add a link to a fieldset legend?

html

Solution

Yes, it is according to the W3 validator. And from an accessibility point of view, I see no problem in having a link in a `fieldset` `legend` either, so you're good to go.

Problem

Is it valid HTML to add a link to your legend tag? Like: ``` <fieldset> <legend><span>Option A</span><span><a href="">Click to copy</a></span></legend> some text </fieldset> ```

Original source