Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialjoshuasemick
2,113 PointsBest practices of using the <address> element?
The lesson suggests using the <address> tag to identify a postal address however the W3C HTML 5 spec states:
"The address element must not be used to represent arbitrary addresses (e.g. postal addresses), unless those addresses are in fact the relevant contact information. (The p element is the appropriate element for marking up postal addresses in general.)"
http://www.w3.org/html/wg/drafts/html/master/sections.html#the-address-element
Is this use of <address> a carryover practice from previous HTML specs that should be done away with? I've read something about using hCards instead.
2 Answers
James Barnett
39,199 Points>
The address element must not be used to represent arbitrary addresses (e.g. postal addresses), unless those addresses are in fact the relevant contact information
Because Nick is the person writing the content and it's Nick's postal address, this is in keeping with the spec.
joshuasemick
2,113 PointsThanks James!