h2 {
    font-family: arial;
    text-align: center;
}

/* Attribute Selectors */
input[type] {
    border: 2px solid orangered;
}

/* Attribute Vaule */
input[type="text"] {
    background-color: palegreen;
}

input[type="email"] {
    background-color: aqua;
}

input[type="button"] {
    border: 2px soild green;
    background-color: dodgerblue;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

/* Attribute Starts With */
p[title^="I"] {
    color: dodgerblue;
}

/* Attribute Ends With */
p[title$="king"] {
    color: red;
}

/* Attribute Containa Word*/
p[title~="am"] {
    text-decoration: underline;
}









