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