Skip to main content

Defining the Search Page

The Search page consists of a table with one row and two columns. The left-hand column contains the Caché Cinema logo and the other column, whose contents are right aligned, will hold everything else.

We also add a horizontal rule (with the <hr> tag) to separate the search page from the rest of the screen.

—Search.csp—
Search.csp
<html> <head></head>
<body>
<table width="100%" border="0"> <tr>
    <td><img src="CacheCinemaLogo.gif"></td>
    <td align="right"></td> </tr>

</table>
<hr>
</body> </html>
FeedbackOpens in a new tab