In this lab, you will add a HTML table to your Xanga page, with some associated style, and then produce a nicely formatted HTML form.
Access the online lecture notes on HTML tables and forms.
It is time to start thinking more seriously about your goals for your Xanga page. So, to get you started, read about scope creep.
Add a table to your Xanga page, by adding HTML to your Xanga "look and feel" section. Its structure should looks like this:

Make sure you enter data related to the subject of the table (GAC). The first row and the first column should be filled with header cells. There can be as many Goal or Audience or Content rows as you like, but there should be at least two rows of each (you can leave one empty if you have nothing to put in the row).
Have a look at the description of CSS for Tables, by the W3c.
Style your table with CSS that will change and improve the look and feel of the table.
The minimum requirements are the following.
Have a look at
Basic
Forms
by Ross Shannon
Create a page with a form that should ask for some feedback about a product of your choice.
The minimum form fields to be filled by the user of the form will be

The table should of course come with the usual Submit and Erase all buttons.
You will test your form with a mailto action, to yourself. Make sure that everything is working when you test it. Once its working perfectly, paste in a copy of the contents of the e-mail into an event on your Xanga page for today's lab
Since you now know how to use CSS, make the form attractive (hint: you could have the components in a table).
<form action="mailto:u1234567@anu.edu.au" method="post" ENCTYPE="text/plain">
works well to send by mail. In this case, you need the enctype attribute to make sure that all the fields will be put into the same text, otherwise, only the first field appears in your mail. (Replace u1234567 by your own ANU e-mail address.)
<form action=http://escience.anu.edu.au/lecture/comp1710/HTML2/form.cgi
method=post
>
is enough to send to any CGI script.
<form action=http://escience.anu.edu.au/lecture/comp1710/HTML2/form.cgi
method=post
enctype=application/x-www-form-urlencoded
>
will work too, but there is no need to specify the enctype for a script type submission
This task is most easily done in parallel with the other tasks.
Your learning journal talks about your thoughts about what you've learnt.
Please don't forget to create an event for today's lab which gives a brief description of what you've done.