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