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