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