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