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