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
aklkkaklkk 

how to take a data from custom object in box ?

hi Every one, 
how to show the data in this way on visualfroce page  please suppot me ? 
User-added image
Thanks 
Alkka
Raj VakatiRaj Vakati
Try this code
 
<apex:page standardController="Account" >
    <html>
        
        <style type="text/css">
            .classOne {
            border-style: solid;
            border-color: coral;
            }
        </style>
        <body>
            
            
            <div class="classOne">
                Name :{!account.Name} <br/>
                Rating :{!account.Name} 
                
                
            </div>
            
            <div class="classOne">
                Name :{!account.Name} <br/>
                Rating :{!account.Name} 
                
                
            </div>
        </body>
    </html>
    
</apex:page>