Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
4  
Only a and link elements have a href attribute. Adding this attribute to other elements does not make them links. – Felix Kling Apr 29 '12 at 20:27
@Derek: How does that in any way add to the comment already posted by Felix? If you were posting your comment in a matter of minutes, whatever, but it's been 30 minutes since his comment. – Madara Uchiha Apr 29 '12 at 21:16
@Truth - * extended explanation * – Derek 朕會功夫 Apr 29 '12 at 21:18
@FelixKling, @Derek - <area> and <base> also take an href attribute. On <area>, it makes a link. – Alohci Apr 29 '12 at 23:20
@Alohci: Thanks (I rarely use these tags). You could also argue that a only becomes a link with an href attribute (otherwise, given a name, 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

2 Answers

(Almost) All elements may contain other elements. So the following is possible:

<h2><a href="/ingredients">Illness</a></h2>
share|improve this answer

you need to tag the a anchor tag inside your h2 tag. something like this:

<h2><a href="/ingredients">illness</a></h2>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.