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