Hello world2.page

Image:cookbook.jpg

Force.com Cookbook Sample Code
Chapter 13: Getting Started with Visualforce - Using the Visualforce Component Library

To download all the code samples, access the Cookbook. - Image:Key_icon.gif

<apex:page standardController="Account">
	<apex:pageBlock title="Hello {!$User.FirstName}!">
		You belong to the {!account.name} account.<br/>
		You're also a nice person.
	</apex:pageBlock>
	<apex:detail subject="{!account}" relatedList="false"/>
</apex:page>

Sample code provided by salesforce.com. All rights reserved.