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