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