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