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