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-size: 52px;
font-weight: 900;
font-size-adjust: 0.78;
font-stretch: extra-condensed;
font-style: italic;
font-variant: small-caps;
}
0 Comments
If you have any question , then please ask me