CSS - Formatage du texte

Page 12

p {
    font-size: 25px;
    /*
    Autres possibilités :
    small, medium, large
    0.8em, 1.3em (exemples)
    */

    font-family: Impact, "Arial Black", Arial, serif;
    /*
    Police à mettre obligatoirement :
    serif ou sans-serif
    */

    font-style: italic;
    /*
    Autres possibilités : normal, oblique
    */

    font-weight: bold; /* ou normal */

    text-decoration: underline;
    /*
    Autres possibilités : line-through, overline, none
    */
}

25px small medium large 0.8em 1.3em

Impact Arial Black Arial serif

italic normal oblique

bold normal

underline line-through overline none