The Below one works;
Step 4: Adding Other Page-Specific Markup to the <head> Section
Steps 1, 2, and 3 looked at customizing the <title> element on a page-by-page basis. In addition to <title>, the <head> section may contain <meta> elements and <link> elements. As noted earlier in this tutorial, Site.master's <head> section includes a <link> element to Styles.css. Because this <link> element is defined within the master page, it is included in the <head> section for all content pages. But how do we go about adding <meta> and <link> elements on a page-by-page basis?
The easiest way to add page-specific content to the <head> section is by creating a ContentPlaceHolder control in the master page. We already have such a ContentPlaceHolder (named head). Therefore, to add custom <head> markup, create a corresponding Content control in the page and place the markup there.
To illustrate adding custom <head> markup to a page, let's include a <meta> description element to our current set of content pages. The <meta> description element provides a brief description about the web page; most search engines incorporate this information in some form when displaying search results.
A <meta> description element has the following form:
<meta name="description" content="description of the web page" />
To add this markup to a content page, add the above text to the Content control that maps to the master page's head ContentPlaceHolder. For example, to define a <meta> description element for Default.aspx, add the following markup:
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server"> <meta name="description" content="Welcome to Scott Mitchell's Master Page Tutorials series." /> </asp:Content>
Because the head ContentPlaceHolder is not within the HTML page's body, the markup added to the Content control is not displayed in the Design view. To see the <meta> description element visit Default.aspx through a browser. After the page has been loaded, view the source and note that the <head> section includes the markup specified in the Content control.
http://www.asp.net/Learn/master-pages/tutorial-03-vb.aspx