<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 opened below, when one clicks on the send button below, the form will be sent to Danko.Sipka@asu.edu (the mailto statement) as a plain text-->
<FORM ACTION="mailto:Danko.Sipka@asu.edu" METHOD="POST" ENCTYPE="text/plain">
1. What is your name? <!--Words on the screen-->
<br> <!--New line-->
<input name=pit1 size=65> <!--Text field named pit1 65 characters long-->
<br> <!--New line-->
2. Describe your interest in Serbo-Croatian<!--Words on the screen-->
<br> <!--New line-->
<textarea name=pit2 rows=10 cols=65> </textarea> <!--Text area 10x65 characters-->
<br> <!--New line-->
<input type=submit value="SEND"> <!--Button which sends the form to Danko.Sipka@asu.edu-->
<input type=reset value="RESET"> <!--Button which resets the contents of the form-->
</FORM> <!-- form field closed-->
</BODY> <!-- body closed-->
</HTML> <!-- html closed-->