CSS Property Value How to - font-weight: normal








Question

We would like to know how to font-weight: normal.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.one {<!--   w  w w  . j av a  2 s  . com-->
  font-weight: normal
}

.two {
  font-weight: bold
}
</style>
</head>
<body>
  <p class="two one">Test!!!!!</p>
</body>
</html>

The code above is rendered as follows: