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