For those of you who are not familiar with HTML, here is the basic idea…

 

Each document starts with the <HTML> tag and ends with the corresponding closing tag </HTML>.

Here is a sample code (you can copy and paste it in a text editor. Save the file as something.html and then double click it).

 

<HTML>

<HEAD><TITLE>My First Page</TITLE></HEAD>

<BODY>

Hello World

</BODY>

</HTML>

 

This is not a course on HTML, and you should be able to pick it up pretty fast, so please refer to the references on the help page for more information.  You probably want to focus on the form element (<FORM>) as it is widely used to pass data in web applications.

 

Let me(Yana) know if you have trouble figuring out the basics