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