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