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