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