Mega Code Archive

 
Categories / ASP.Net Tutorial / ASP Net Controls
 

Bold font

< 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"                     Font-Bold="True"                     Text="Hello, World!"></asp:Label></div>     </form> </body> </html>