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