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