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