font-face

 <!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">
<style>


/*https://all-free-download.com/font/*/
@font-face {
font-family: Sabir;
src: url('../font/Handwriting.ttf');
unicode-range: U+??,U+100-220;
font-size: 28pt;
font-family: sans-serif;
}
.f1{
font-family: Sabir;
font-size: 29pt;

}

</style>
</head>
<body>

<div class="f1">
The font-family property is used to change the face of a font. The font-style property is used to make a font italic or oblique. The font-variant property is used to create a small-caps effect. The font-weight property is used to increase or decrease how bold or light a font appears. The font-size property is used to increase or decrease the size of a font. The font property is used as shorthand to specify a number of other font properties.
</div>

</body>
</html>

Comments