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