Styling text with CSS : style « Tags « HTML / CSS






Styling text with CSS

  
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

  <title>Styling text with CSS</title>
  
  <style type="text/css">
  body { 
        font-family: "Trebuchet MS", Helvetica, Arial, sans-serif;
        font-size: 12px; 
        line-height: 1.5em;
    }
    h1 {
        font-size: 160%;
    }
  </style>
  
</head>

<body>

  <h1>About Us</h1>
  
  <p>this is a text.</p>

  <p>this is a text.</p>
  
</body>
</html>

   
  








Related examples in the same category

1.Declaring a style sheet in the header section
2.Embedded Style Sample
3.Two Embedded Style
4.The style attribute allows you to declare inline styles. Separate multiple styles with a semicolon.
5.'style' Example