Sunday, 19 July 2009

Email response (HTML forms)

HTML forms are a great tool for you to receive information which is fed onto your blog. You can use them to send you an email with the text which has been written on your blog, making it possible for you to create writing activities.
For example:


Write a critical review of the Star Wars series.






The code for this is quite simple:


<form method="post" action="mailto:youremail@email.com">
<textarea rows="10" cols="40" wrap="physical" name="Answer"></textarea>
<input type="submit" value="Send">
</form>


Copy and paste this code onto your blog. Change youremail@email.com for the email address you want the information to be sent to. You can change the size of the text area by changing the values of 'rows' and 'cols'.

That is it!



No comments:

Post a Comment