tags:

views:

44

answers:

3

In which elements (tags) attribute href is allowed according to the HTML 4.01 standard?

EDIT: An is it commonly used is some other tags (in non-standard ways).

A: 

primarily the Anchor tag

<a href="www.url.com">link</a>

Have a look at www.htmlref.com

Mark Redman
A: 

AFAIK only <a> and <base> tags allow the href attr.

robertbasic
+7  A: 

According to the standard...

A, AREA, LINK, BASE

John Weldon
+1 the only one who got it completely right in the first go :)
Pekka
lol, thanks. w3c is my friend :)
John Weldon
+1 I was going for the same thing, but I didn't know about that table. Nice.
Lord Torgamus
I was looking for exactly such table. Thanks!
JohnM2