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