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