The first thing we need to do is create an empty XHTML document into which we can place the mark-up for the Flickr seach form. If you created the template at the beginning of the Introduction to XForms then go ahead and use that. Otherwise, create a new document in your editor and copy the template from here. Change the title to "Flickr Search Form", and save the file as flickr.html.
The finished form also requires at least version 1.4.2.1016 of formsPlayer, so if necessary, change the object tag, as follows:
<head>
<object width="0" height="0" id="formsPlayer"
classid="CLSID:4D0ABA11-C5F0-4478-991A-375C4B648F58"
codebase="http://skimstone.x-port.net/files/releases/formsPlayer-1.4.2.1016.cab#Version=1,4,2,1016"
>
<b>formsPlayer has not been installed.</b>
</object>
We'll also create a separate CSS file to hold our style rules so add the following line to the head:
<title>Flickr Search Form</title>
<link rel="stylesheet" href="flickr.css" type="text/css" />
</head>
And then create an empty file, called flickr.css. We're ready to go.