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