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