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