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