WebRespond: Quiz Web Page

The quiz web page displays any HTML code explaining the quiz and calls the applet WebRespond. You can specify the name of the master file as well as how much space the applet occupies on your web page.

The easiest way to set up this page is to modify the provided template file. If you are familiar with writing HTML or you have a program which makes HTML writing easy, you can use the following information to set up the applet correctly.

The following set of tags must be used to call WebRespond.

<APPLET	ARCHIVE="wrespond.zip"
	CODEBASE="http://www.cedarville.edu/employee/gollmers/wrespond"
	CODE="WebRespond.class"
	WIDTH=500
	HEIGHT=350>
<PARAM NAME="name" VALUE="mstmplt.txt">
</APPLET>

Example: Web Quiz Page

A sample web quiz page is included so you can become familiar with the look of the file. A link to the sample web quiz page is also included so you can try out WebRespond for yourself.

<TITLE>Quiz Using WebRespond v1.0</TITLE>	<!-- Give your web page a title -->	
<BODY BGCOLOR="c0c0c0">				<!-- This begins the main body of the web
						     page and sets the background color to light gray. -->
<H2>Quiz Using WebRespond v1.0</H2>		<!-- Use any appropriate HTML code before calling WebRespond. -->
<HR>						<!-- This places a horizontal line before the applet. -->
<APPLET ARCHIVE="wrespond.zip"
        CODEBASE="http://www.cedarville.edu/employee/gollmers/wrespond"
        CODE="WebRespond.class"
        WIDTH=500
        HEIGHT=350>				<!-- This section of code calls WebRespond.
						     You may change the values of the width and height,
						     but the rest should remain unchanged unless you have
						     read the documentation for WebRespond. -->
<PARAM NAME=name VALUE="sample.q1">		<!-- This sets the name of the master file.
						     Once you generate your master file, replace
						     "sample.q1" with the name of your master file. --> 
</APPLET>					<!-- This ends the call to WebRespond. -->
<HR>						<!-- This places a horizontal line after the applet. -->
<P>If you have any questions about WebRespond, please
contact the author at <A HREF="mailto:gollmers@cedarville.edu">
gollmers@cedarville.edu</A>.<P>			<!-- You can place any additional HTML code after this point. -->
</BODY>						<!-- This marks the end of the main body of the web page. -->

Try WebResond for your self.