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