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