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