Question: *I have to write an HTML string within the body with a form that has these characteristics: 1) The form uses the POST method. 2)

*I have to write an HTML string within the body with a form that has these characteristics:

1) The form uses the POST method.

2) There are two inputs: a regular input with type="text" and a textarea.

3) Set name="rot" on the input element and name="text" on the textarea.

4) Has a label on the input element.

5) The input element has the default value of 0.

6) Has a submit button.

*So far, I have steps 2,3,4, and 6 done(as shown below). I can't figure out 1 and 5. Any help is much appreciated!

*As far as using the POST method, I know I need

, but what about the 'action' attribute?? What goes there??