Mark wrote: "My problem is that I am working on a family tree website, but I cannot find where to access the code for links to rootsweb genealogical charts such as this one." Mark, a major difference between a Freepages site and a WorldConnect GEDCOM is that -- with WorldConnect, you supply the database and the server handles the display coding (and search engine) for you; -- with a Freepages site, you have to supply, not just the data, but also the coding for display. The code for linking to anything on the Web is simple: <.a href="place-to-go-to">text</a> (without the leading dot) To display charts or indexes, you'll probably have to create them offline and upload the pages to your site. Take the first page you cited, http://freepages.genealogy.rootsweb.ancestry.com/~janej/Jane/Jane-o/ui10.htm . Let's look at Jane's source code. In IE, click "View", then "Source". Reading her code --look for her comment <!-- boxes --> -- she's got stuff like this: <.div id="a0" class="cbp csb" style="left:12px;top:12px;width:160px;height:55px;"> <.a href="p38.htm#i1">William Higgins</a><br><.span class="cdt"> b. circa 1806<br>d. 3 July 1874</span></div> (Again, ignore the leading dots in the HTML tags.) Jane is using a technology called CSS (for cascading style sheets). The code creates a positioned box to display William Higgins' name and dates with a link to a page with more info about him. CSS is standard stuff, but it can quickly get complicated. It's just a guess, but Jane seems to have created this herself. The second cited page, http://freepages.genealogy.rootsweb.ancestry.com/~janej/Jane/Jane-o/surname_ index.htm uses a definitions list (standard HTML) -- look in the source code for <.dl class="surnames">. She's created this index herself too. If you want similar results, be prepared for lots of HTML and CSS coding. There may be tools available to make it easier and I'm sure the folks on this list can suggest some. I'd second Judy's suggestion: Don't try, on your Freepages site, to duplicate what WorldConnect can do better and with less fuss. Use the Freepages site for what WorldConnect doesn't do. -rt_/)