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