Use on the webTotal Use [ 6489 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/fc9f5602f450c6a798174d302c4ad95e?family=F.VnCentury+Schoolbook+Italic" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/fc9f5602f450c6a798174d302c4ad95e?family=F.VnCentury+Schoolbook+Italic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "F.VnCentury Schoolbook Italic";
src: url("https://db.onlinewebfonts.com/t/fc9f5602f450c6a798174d302c4ad95e.eot");
src: url("https://db.onlinewebfonts.com/t/fc9f5602f450c6a798174d302c4ad95e.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/fc9f5602f450c6a798174d302c4ad95e.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/fc9f5602f450c6a798174d302c4ad95e.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/fc9f5602f450c6a798174d302c4ad95e.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/fc9f5602f450c6a798174d302c4ad95e.svg#F.VnCentury Schoolbook Italic")format("svg");
}
2CSS rules to specify fonts
font-family: "F.VnCentury Schoolbook Italic";