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