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