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