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