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
sandeep kumar 140sandeep kumar 140 

Salesforce look and feel

Hi guys,

I have created one form with html code in the visual force page. In form tag am using method as post and action as some URL. Now i want this form look and feel in salesforce. Please help on this.

Please refer the screen shot of my form.
Please give some sample code for look and feel of salesforce.

User-added image
 
Sitarama MurthySitarama Murthy
sandeep,

try using <apex:pageBlock> tag after <form> tag
vigneshwar kothavigneshwar kotha
hi Sandeep,

Keep the fields in apex page block and pageblock section.
<apex:form>
<apex:pageBlock>
<apex:pageBlocksection>
 // input text
</apex:pageBlocksection>
</apex:pageBlock>
</apex:form>