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