Filter (Advanced Search)
Downloads
1
Views
357
Video

Colors, Fonts and Sizes | CSS

Details

Here, we will demonstrate some commonly used CSS properties. You will learn more about them later.

The CSS color property defines the text color to be used.

The CSS font-family property defines the font to be used.

The CSS font-size property defines the text size to be used.


<!DOCTYPE html>
<html>
<head>
<title>Colors, Fonts and Sizes</title>
</head>
<body>

<h1>Colors, Fonts and Sizes</h1>
<p>GSSS KHOKHAR</p>

</body>
</html>


Output


Ad