Can I add a link to heading in HTML? Something like this
<h2 href="/ingredients">illness</h2>
Somehow it seems to work on simple text only.
|
Can I add a link to heading in HTML? Something like this
Somehow it seems to work on simple text only. |
||||
|
(Almost) All elements may contain other elements. So the following is possible:
|
|||
|
|
|
you need to tag the
|
||||
|
|
aandlinkelements have ahrefattribute. Adding this attribute to other elements does not make them links. – Felix Kling Apr 29 '12 at 20:27<area>and<base>also take an href attribute. On<area>, it makes a link. – Alohci Apr 29 '12 at 23:20aonly becomes a link with anhrefattribute (otherwise, given aname, it is just an anchor). My point was that being or not being a link is a property of the element/tag (maybe in combination of a certain attribute) but never of an attribute alone. – Felix Kling Apr 29 '12 at 23:24