Twitter embeds hCards in nearly all of its webpages with users' names ("fn") and profile pictures ("photo"). A sample Twitter homepage at http://courses.ischool.berkeley.edu/i290-4/f09/resources/10_20_exercise/twitter_hcard.html has this information, plus some additional hcard information for each user's email address, telephone number, and organization. Create some script on this page that extracts the contact information in the hcards on the and displays it as some kind of address book. The address book can contain any or all of the information in each hcard. NOTES - Write your code in the twitter_hcard.html file. You can change this file however you want. - Remember that an hCard ("or HTML vCard") is an element with the class "vcard". - For information about the hCard microformat, see http://microformats.org/wiki/hcard . Note that for certain microformats the machine-readable data is stored in the title attribute. - To split up the work, one person might figure out how to access the information in each of the hcards on the page, one might write some JavaScript that takes that information and creates the address book data from it, and another might create styles for the address book. You are welcome to work however you want.