Mega Code Archive

 
Categories / ASP.Net Tutorial / ASP Net Controls
 

Working with the Font properties

< html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server">     <title>Untitled Page</title> </head> <body>     <form id="form1" runat="server">     <div>         <asp:Label ID="Label1"                     runat="server"                     Text="Working with the Font properties"                     Font-Italic="True"                     Font-Names="Arial"                     Font-Size="22pt"></asp:Label>     </div>     </form> </body> </html>