To set size of a font. font-size property effects or changes the font height. Default font size is 16px. Font size does not accepts negative value.

Example

<html>
<head>
<style>
div {
   font-size: 20px;
}
</style>
</head>
<body>
<div>
 font with size 20px example
</div>
</body>
</html>