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