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