Pages - Menu

Monday, 26 January 2015

Zone de text(Text area) dans blogger

In this post we will learn together how to add a text box (called HTML text area ) in our blog blogger.

 





1- Login to blogger , go to Presentation >> Edit HTML and check the box gadgets Develop models.
 

2- Search using (Ctrl + F ) the following code :
</ head>
 

3- And right after the tip paste the code below:

<script type = "text / javascript">
selectAll function ()
{
document.form1.demo.focus ();
document.form1.demo.select ();
}
</ script>
4. Click Save Template
5- and go to page elements Presentation >> >> add a gadget , choose HTML / JavaScript gadget type and add this code:
<form name = " form1 ">
<textarea cols = "25" rows = "10" name = " demo" > Add your content here

</ textarea>
<input type = "radio " name = " selectit " value = " Select All " onclick = " selectAll ( );">
</ form>
6- the text written in green is to change your text .

No comments:

Post a Comment