<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--> 

	
1. Šta nije odevni predmet? <!-- Words which appear on the screen--> 

<!-- Text field named odg1 opened below with the value of "Click on your choice below" and the length of 50 characters--> 
<INPUT NAME="odg1" Value="Click on your choice below" TYPE="TEXT" SIZE="50"> 

<BR>  <!-- New line added--> 

<!-- Radio button opened below with the name of q1--> 
<!-- If one clicks on ot (onClick) the text field odg1 above will show the message "Niste u pravu...--> 
<INPUT TYPE="RADIO" NAME="q1" 
	onClick="(form.odg1.value='Niste u pravu. To se stavlja na glavu.')">  

kapa <!-- Word which appears after the radio button--> 
<BR>  <!-- New line added--> 

<!-- Radio button opened below with the name of q1 Giving all buttons the same name causes only one to be pressed--> 
<!-- If one clicks on ot (onClick) the text field odg1 above will show the message "Niste u pravu...--> 
<INPUT TYPE="RADIO" NAME="q1" 
	onClick="(form.odg1.value='Niste u pravu. To se stavlja oko vrata.')"> 
šal<!-- Word which appears after the radio button--> 

<BR>  <!-- New line added--> 

<!-- Radio button opened below with the name of q1--> 
<!-- If one clicks on ot (onClick) the text field odg1 above will show the message "Niste u pravu...--> 
<INPUT TYPE="RADIO" NAME="q1" 
	onClick="(form.odg1.value='Tako je! To se stavlja na lampu')"> 
abažur<!-- Word which appears after the radio button--> 

		</FORM>  <!-- form field closed--> 

	</BODY>  <!-- body closed--> 

</HTML>  <!-- html closed-->