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