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