function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Force.platformForce.platform 

field label for inputText

Hello all, 
i have inputText and InputTextArea field on vf and i want to give label to them. how can i do that? 
<apex:pageblockSection> 
<apex:inputText title="Name" value="{!n}" />
<apex:inputTextarea title="Address" value="{!a}"/>
 </apex:pageblockSection> 
Best Answer chosen by Force.platform
Ajay K DubediAjay K Dubedi
Hi Arati,
Try this:-
<apex:inputText  id="a" >
        <apex:outputLabel>Label: </apex:outputLabel>
       </apex:inputText>
Kindly mark it as best if found helpful.

Thanks
Ajay​