Resize this window so you can view the main text.

Close this window to return to the main text.

15 print `Content-type: text/html` : print
20 print `<TITLE>Form for Making a Greeting Card</TITLE>`
30 print `<H1>Greeting Card Form</H1>`
70 print `<HR>`
80 print `<FORM ACTION="/scripts/card.bas">`
110 print `<H3>Card Type</H3>`
115 print `<Font `
120 print `Select which type of card you would like:<P>`
130 print `<INPUT TYPE="radio" NAME="type" VALUE="1" CHECKED>Birthday card:`
140 print `A basic birthday card.<P>`
150 print `<INPUT TYPE="radio" NAME="type" VALUE="2">Anniversary card:`
160 print `A basic anniversary card.<P>`
170 print `<INPUT TYPE="radio" NAME="type" VALUE="3">Thank you card:`
180 print `A basic thank you card.<P>`

300 print `<H3>Particulars:</H3>`
310 print `Recipient"s name <INPUT TYPE="text" NAME="who" MAXLENGTH="32" value="Mary"><P>`
420 print `Your name <INPUT TYPE="text" NAME="name" MAXLENGTH="32" value="John"><P>`

450 print `<INPUT type="submit" VALUE="Create Card">`
455 print `</font>`
460 print `</FORM>`
490 goto 4000
500 rem