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