<HTML> <!-- Each documents commences in this manner.-->
<HEAD> <!-- Head section opened. Contains character set information and the title of your page, i.e., the one which appears in the top bar of your browser-->
<META http-equiv="Content-Type" content="text/html; charset=windows-1250"> <!-- Content and character set defined. Meta does not need to be closed-->
<TITLE> Lexical intruders</TITLE> <!-- Title given, the title tag has to be closed-->
</HEAD> <!-- Head section closed-->
<BODY> <!-- Body section opened. Body contains all elements you see on your Web page.-->
<FORM> <!-- Form section opened. Forms contain elements you can fill out-->
<table> <!--Table opened-->
<TR> <!--First row of the table opened-->
<TD align=center> Jedan od poludjelih skinheadsa završio je na: <!--First cell opened with the text "Jedan od..."-->
</TD> <!--First cell closed-->
<TD> <!--Second cell opened-->
<SELECT NAME="item1"> <!--The second cell contains a pop down menu with the options listed below-->
<OPTION VALUE="none"> Choose</OPTION>
<OPTION VALUE="da"> psihijatriji</OPTION> <!--This option is the right answer-->
<OPTION VALUE="ne"> gastrologiji</OPTION>
<OPTION VALUE="ne"> pošti</OPTION>
<OPTION VALUE="ne"> izletu</OPTION>
</SELECT> <!--Menu closed-->
</TD> <!--Second cell closed-->
<TD> <!--Third cell opened-->
<!--Table opened-->
<!--Button opened. When one clicks on it if the value of the option from the menu above-->
<!--is 'da', then write 'Tako je' in the text field below if its value is 'ne' then write 'Nije!' in the same field-->
<!--In all other cases (else) write 'Choose something' in the same field-->
<INPUT type="button" name="button2" value="Answer"
onClick="
if (this.form.item1.value == 'da') {
(this.form.item2.value = 'Tako je!');
} else if (this.form.item1.value == 'ne') {
(this.form.item2.value = 'Nije!');
} else {
(this.form.item2.value = 'Choose something');}">
</TD> <!--Third cell closed-->
<TD> <INPUT TYPE="TEXT" NAME="item2" SIZE="20"> </TD> <!--Fourth cell opened with the text field and then closed-->
</TR> <!--First row closed-->
</table> <!--Table closed-->
</FORM> <!-- form field closed-->
</BODY> <!-- body closed-->
</HTML> <!-- html closed-->