Asp Control ASP.Net

<%@ Page Language="C#" %>


    
        div
        {
            padding:10px;
        }
        .labelStyle
        {
            color:red;
            background-color:yellow;
            border:Solid 2px Red;
        }
    
    Format Label


    
    

    
            id="lblFirst"
        Text="First Label"
        ForeColor="Red"
        BackColor="Yellow"
        BorderStyle="Solid"
        BorderWidth="2"
        BorderColor="red"
        Runat="server" />
    
    
    
            id="lblSecond"
        Text="Second Label"
        CssClass="labelStyle"
        Runat="server" />