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