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