CSS Tutorial : Font and related property

 


<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CSS Fonts </title>
    <link href="https://fonts.googleapis.com/css2?family=Baloo+Tammudu+2:wght@500&display=swap" rel="stylesheet">

    <style>
        p {
            font-family'Baloo Tammudu 2'cursive;
            font-size15px;
            /* 1/96th of an inch*/
            line-height1.3em;
        }

        span {
            font-weightbold;
            font-sizelarger;
        }
    </style>
</head>

<body>
    <h3>CSS Font</h3>
    <p>Lets play with Css <span> Fonts </span> . It is very exciting</p>
</body>

</html>