Sunday 7 March 2021

CSS TUT-3 How To Add Fonts-Family And Make Beauty In Fonts ?

 How To Add Fonts-Family And Make Beauty In Fonts ?

Fonts Size And Fonts-Family

<!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 rel="preconnect" href="https://fonts.gstatic.com">
    <link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Pacifico&family=Russo+One&display=swap" rel="stylesheet">
    <style>
        p{font-familyImpact, Haettenschweiler, 'Arial Narrow Bold'sans-serif;
    font-size30px;
}
span{font-weightbold;
font-styleitalic;}



    </style>
</head>
<body>
    <h2>This is tut for Fonts written</h2>
    <p>is this my beauty fonts no </p>
    <p>then which <span>One</span>  is my join family font </p>
</body>
</html>



No comments:

Python if / else

 Python if / else a1 = int ( input (" Enter the number: \n ")) a2 = int ( input (" Enter the number: \n ")) a3 = int ( i...