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