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