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