CSS Fonts

 <!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>
<style>
    p{
        font-family:Consolas,monaco,monospace;
        font-size: 30px;
        line-height: 1.3em;
font-weight: bold;

    }
    h3{ font-size: 40px;}
</style>

</head>
<body>
     <h3>CSS Fonts  </h3>
     <p>Lets play  with fonts</p>
</body>
</html>

Comments