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