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