How to add a text box in a blog post
A text box is a box that holds text in a blog post. You can add this box in your blog post by adding a given code below just in a HTML section of your blog post. So, in this post i'm going to give you the HTML code for text box and show you how to add it in your article(s). First let's look on the code. A text box without background colour This code below is for text box without background colour. <textarea style="WIDTH: 332px; HEIGHT: 70px" onfocus="this.select();" name="textarea" cols="14">PUT CONTENT HERE</textarea> Preview PUT CONTENT HERE A text box with background colour This code below is for text box with background colour. <textarea rows="10" cols="40" style="background:#6699ff;">PUT CONTENT HERE</textarea> You can edit the background colour by changing #6699ff from the code above to any colour you prefer. Preview PUT CONTENT HERE How to add a text box in a blog post Whether...