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