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