The "HTML" code for a simple form that corresponds to the first window in the Macbeth example would look like:
<html><head><font face="Arial"><title>Macbeth Demonstration</title></head>
<body bgcolor=#ffffff>
<h1><img src="powered.gif" border=0> Macbeth Demonstration</h1>
<form action="macbeth.web" method="POST">
<input type=hidden name="EP" value="FIRST">
<b>Search for</b> <input type=text name="Search" value="">
<b>Select from</b> <select name="Select">
<option value="1">Duncan</option>
<option value="2">Malcolm</option>
<option value="3">Donalbain</option>
...
<option value="35">Second Murderer</option>
<option value="36">Third Murderer</option>
<option value="37">Messenger</option>
</select><p>
<input type=submit value="Search Database" name="Button"><p>
</form><p><hr></body></html>
which will appear like:
Go on to the next page in this sequence.