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