January 9, 2013

textboxes - a very belated post

I can't believe I haven't already made this post. If you'd like to add textboxes to your blog, it's actually quite easy. Ah ha! I finally managed to make it work. The code to use is below-- but it's missing the end textarea code so don't forget to add that:

"

So what does all that code mean?
  • "textarea" = creates the actual textbox
  • cols = size of the column-- some numeric value to say how wide the box should be (the above box is about 40)
  • readonly = means that readers may not add to the code
  • rows = size of rows-- some numeric value to say how tall the box should be (the above box is 5)
  • then put whatever you want to say in " ". In this case, the html code is actually in the quotes. 
You can just copy the above code and if you do, don't forget to remove the " " and close the textarea!

No comments:

Post a Comment