Lab 5 - Using Functions

In this folder you will find names.xml.  It contains a list of names.
Further, each name has an attribute, preferred-font-family, that specifies
a font family (Times, Courier, Arial, etc).

Notice that the XML document uses namespaces.

You are to create a function, displayNameWithFont, in the Prolog.  The function
has two parameters, (1) name and (2) font-family.  You are to iterate through each
name in names.xml and output the name in the font family specified by preferred-font-family
using your function.  Results.html shows what the output should look like.

Specifically, you are to create an HTML unordered list (ul). The function is to
create a list item (li).

Ordinarily, styling instructions such as font-family should be specified in a
separate CSS file. There are (rare) occassions when stying must be done within
the HTML document. Here is an example that illustrates the proper method:

    <li style="font-family:Arial">Linda</li>

Be sure that the <li> element is in the proper namespace! Once you're done, open
Results.html and inspect the raw HTML code. Examine the <li> element. What namespace
is it in?