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