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