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