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