Hi! Serdar Kilic schrieb: > > The address element is a perfect candidate to be marked up using hCard. > > <address> > <ul class="about vcard entry-author"> > <li>Name: <span class="fn">Serdar KiliƧ</span></li> > <li>Location: <span class="adr">Sydney</span></li> > <li>Web: <a href="http://weblog.kilic.net" class="url" > rel="me">http://weblog.kilic.net</a></li> > </ul> > </address> >
No, it isn't! 1. The address element may not contain block elements, so your code example is invalid HTML. 2. The address element may be used to markup the address of author/editor of a page. <blockqoute> 7.5.6 The ADDRESS element <!ELEMENT ADDRESS - - (%inline;)* -- information on author --> <!ATTLIST ADDRESS %attrs; -- %coreattrs, %i18n, %events -- > The ADDRESS element may be used by authors to supply contact information for a document or a major part of a document such as a form. This element often appears at the beginning or end of a document. </blockquote> <cite>http://www.w3.org/TR/html401/struct/global.html#h-7.5.6</cite> ******************************************************************* List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm Help: [EMAIL PROTECTED] *******************************************************************
