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