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