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
sudhsudh 

How to insert an image to visual page

How to insert an image to visual page,please help me in this

Best Answer chosen by Admin (Salesforce Developers) 
Rahul SharmaRahul Sharma

You can upload the image as static resource and use its url in the page.

like :

<img src="{!URLFOR($Resource.UploadedImageName)}"  />

All Answers

Rahul SharmaRahul Sharma

You can upload the image as static resource and use its url in the page.

like :

<img src="{!URLFOR($Resource.UploadedImageName)}"  />

This was selected as the best answer
sfdcfoxsfdcfox

You may also use <apex:image>.