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