SharePoint Site Title to Present in all Pages

In order to show the SharePoint Site Title in all the pages either it is Site Pages or Application Pages, you can embed the following script in the MasterPage of site.
The Code Snippet is given below as follows.
  1. <asp:ContentPlaceHolder id="PlaceHolderSiteName" runat="server">  
  2.     <SharePoint:SPLinkButton runat="server" NavigateUrl="~site/" id="idProjectPropertyTitle"><SharePoint:ProjectProperty Property="Title" runat="server" /></SharePoint:SPLinkButton>  
  3. </asp:ContentPlaceHolder>  
Thats it! This would add the property of Title in your Master Page.
 
Happy SharePointing :-)