The company directory page would look like the following: <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <title>company directory</title> </head> <body> <h1>company directory</h1> <h2><a ></a>jane jones</h2> <p> ms. jones is our accountant... etc. </p> <h2><a ></a>sam smith</h2> <p> mr. smith is our salesman... etc. </p> <h2><a ></a>r.k. satjiv bharwahniji</h2> <p> mr. bharwahniji is our president... etc. </p> </body> </html> If the file were named directory.html, a link to one employee's information from another page would look like the following: <a href="directory.html#bharwaniji">about our president</a> |