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