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