CSS Property Value How to - color: green;








Question

We would like to know how to color: green;.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
h1 {<!--from ww w  . j  av  a2s  . com-->
  letter-spacing: 4px;
  color: green;
  font-family: Impact;

}
</style>
</head>
<body>
  <h1>This is a header</h1>
  <p>This is a paragraph</p>
</body>
</html>

The code above is rendered as follows: