Use on the webTotal Use [ 4439 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/7291b61a485c593db97b350ce2452be8?family=Clarendon+Text+W01+Bd+Italic+TF" 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/7291b61a485c593db97b350ce2452be8?family=Clarendon+Text+W01+Bd+Italic+TF);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Clarendon Text W01 Bd Italic TF";
src: url("https://db.onlinewebfonts.com/t/7291b61a485c593db97b350ce2452be8.eot");
src: url("https://db.onlinewebfonts.com/t/7291b61a485c593db97b350ce2452be8.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/7291b61a485c593db97b350ce2452be8.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/7291b61a485c593db97b350ce2452be8.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/7291b61a485c593db97b350ce2452be8.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/7291b61a485c593db97b350ce2452be8.svg#Clarendon Text W01 Bd Italic TF")format("svg");
}
2CSS rules to specify fonts
font-family: "Clarendon Text W01 Bd Italic TF";