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