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