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