vote up 1 vote down star

Hi all

I got this code from the wordpress

<head profile="http://gmpg.org/xfn/11">

What does this means?

what is the use of this code.? :-)

flag

65% accept rate

4 Answers

vote up -1 vote down

It's useless enough to be dropped from the HTML5 draft. I'd suggest against using it.

link|flag
vote up 3 vote down

Its like a meta link for the XHTML Friends Network. XFN is a way of describing, in a machine-readbale way, relationships between you and other people.

link|flag
relationships between you and other people ?? means, what is the use ? – coderex Sep 13 at 13:12
You can link to someones website/blog and markup the relation using the X/HTML rel attribute; e.g. <a href="dave-blog.example.org/"; rel="friend met">Dave</a> Essential XFN is a list of terms that can be put in the rel attribute – Jonny Barnes Sep 13 at 20:24
vote up 5 vote down

From http://www.w3.org/TR/html401/struct/global.html#h-7.4.4.3

Meta data profiles

The profile attribute of the HEAD specifies the location of a meta data profile. The value of the profile attribute is a URI. User agents may use this URI in two ways: As a globally unique name. User agents may be able to recognize the name (without actually retrieving the profile) and perform some activity based on known conventions for that profile. For instance, search engines could provide an interface for searching through catalogs of HTML documents, where these documents all use the same profile for representing catalog entries. As a link. User agents may dereference the URI and perform some activity based on the actual definitions within the profile (e.g., authorize the usage of the profile within the current HTML document). This specification does not define formats for profiles.

link|flag
vote up 1 vote down

It is a meta data profile.

As specified by http://www.w3.org/TR/html4/types.html#type-links, profiles should be specified when using values for the rel attribute that are not defined in the HTML specification.

See http://www.w3.org/TR/html4/struct/global.html#h-7.4.4.3 and http://gmpg.org/xfn/11 for the details.

link|flag

Your Answer

Get an OpenID
or

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