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