Ticker

6/recent/ticker-posts

Header Ads Widget

Responsive Advertisement

CSS fonts

 CSS fonts





CSS fonts and it's properties

CSS fonts has the properties like 


font-family
font-size
font-weight
font-size-adjust
font-stretch
font-style
font-variant


source code HTML


<!DOCTYPE html>
<html lang="en">
<head>
    <link rel="stylesheet" href="style.css">
    <link href="https://fonts.googleapis.com/css2?family=Do+Hyeon&display=swap" 
rel="stylesheet">
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <h1>Coding Discussion</h1>
    
</body>
</html>


source code CSS

h1{
    font-family'Do Hyeon'sans-serif;;
    font-size52px;
    font-weight900;
    font-size-adjust0.78;
    font-stretchextra-condensed;
    font-styleitalic;
    font-variantsmall-caps;
}


Please Do not copy this code. At first learn and them apply -sagnik sarkar












Post a Comment

0 Comments