Open the file CustomTables.EZF. (Save this file to your desktop first.) It is in the same folder that EZSurvey is installed in. This is the same as the file you may have used in the Inserting Images tutorial. Preview the file. The problem with this file is that the questions responses line up with the top of the image, rather than with the center. We will fix this problem during this tutorial so that the response buttons are vertically centered relative to the images.
The questions should now look something like:
<table width="100%">
  <tr align="center">
    <td>
<img src="france.jpg">
<br>
<br>
</table>
<tr valign="center">: <tr> is the Table Row tag. It denotes the beginning of a new row. valign is the vertical alignment. Writing valign="center" tells the browser to arrange the elements so that they are vertically centered in the row (mid-way between the top and bottom).
<td>: This is the Table Data tag. You use it before each object you wish to put into the table. The reason that we put one both before and after the questions is so that the responses will appear across from the question, not under it - the responses will be placed in a new column rather than appear in the same one as the question.