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