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
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
How to add a text box in a blog post
Whether you are a Blogger user or WordPress user, adding a text box to a post is very easy. You don't need to be a programmer or an expert to add this code in your blog post. You only need to copy the code of a text box above, whether with background colour or without background colour, the choice is yours. Soon after copying that code, go to a blog post you want to add a text box and switch it to HTML view/mode. Then add the code at a place you want a text box to appear and switch back to Compose view/mode, then add your text in a box.
Comments
Post a Comment