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
Deepanshu KocharDeepanshu Kochar 

Not able to access Account's fields in Account standard controller in VF page

I just started with Visualforce and tried to create a page using standard controller(account) using the code below , however the output shows only one of the field in the preview , i.e Account.name .

<apex:page sidebar="false" standardController="Account" >
    

    
    <apex:pageBlock title="Account Summary">
        <apex:pageBlockSection>
            
            Name : {! Account.name}<br>
            Phone : {! Account.Phone}<br>
            Industry : {!Account.Industry}<br>
            Revenue : {!Account.AnnualRevenue}
        </apex:pageBlockSection>
    
    
    </apex:pageBlock>


</apex:page>

Output :

User-added image

I should be getting all the fields. , what am i doing wrong ?
Deepanshu KocharDeepanshu Kochar
Nevermind , i got it .
Was'nt closing the break tag before