section {
    margin-bottom: 100px;
}
section p {
    color: crimson;
}
a[title] {
    /*Sélecteur d'attribut*/
    text-decoration: none;
    color: crimson;
}
input {
    display: block;
    padding: 10px;
    margin: 10px;
}
input[type="password"]{
/*Sélecteur d'attribut spécifique*/
    border: 1px solid red;
}
input[type*="e"]{
/*Sélecteur d'attribut de recherche avec tous les e*/
    border: 1px solid green;
}
input[type^="s"]{
/*Sélecteur d'attribut de recherche qui commence par s*/
    border: 1px solid blue;
}
input[type$="l"]{
/*Sélecteur d'attribut de recherche qui se termine par l*/
    border: 1px solid brown;
}
section {
    width: 60%;
}
span {
    font-size: 25px;
    font-weight: 600;
    background-color: #ffff008e;
}
#marron {
    color: brown;
}
.vert {
    color: green;
}
#rouge {
    color: red;
}
#bleu {
    color: blue;
}