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