CSS: Lesson 12 - Fonts, Styling, Bold, Underline, Italic

<html>
 <head>
 <title>Fonts</title>
<!DOCTYPE html>

<style >

 p {
 font-family:Arial, Helvetica, sans-serif;
 }
  .bold {
 font-weight:bold; color:green; font-size:10px;
 }
 .italic
{ font-style:italic;
 }
 .underline {
 text-decoration:underline;
 }
 </style>

 </head>

 <body>

 <p>the font family is just so cool..</p>

 </body>
</html>

0 comments:

TUTORIALS

  • HTML
  • CSS
  • Javascript
  • JQuery
  • PHP
  • MySQL

Labels