Download pdf - CSS - Styling Text

Transcript
  • Styling Text: stylingtext.html !!

    Learning CSS

    p {

    font-family:Arial, Helvetica, sans-serif;

    }

    .bold {

    font-weight:bold;

    color:green;

    font-size:10px;

    }

    .italic {

    font-style:italic;

  • }

    .underline {

    text-decoration:underline;

    }

    This is some text

    This is some bold text

    This is some italic text


Recommended