How to hide the tabs using Visualforce page?

How to hide the tabs using Visualforce page?

Sample Code:


<apex:page wizard=”true”>
<apex:form >
    <apex:pageBlock >
        <apex:pageBlockSection >
            <apex:pageBlockSectionItem >Name<apex:inputText /></apex:pageBlockSectionItem>
        </apex:pageBlockSection>
        <apex:pageBlockButtons >
            <apex:commandButton value=”Store”/>
        </apex:pageBlockButtons>
    </apex:pageBlock>
</apex:form>
</apex:page>


Output:

Leave a Reply