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