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