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