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